addNostrEventQueue内にAdded print文を移動

This commit is contained in:
studiokaiji
2023-11-09 04:19:20 +09:00
parent b4f5d52f26
commit 6863b43360
2 changed files with 18 additions and 5 deletions

View File

@@ -72,6 +72,19 @@ func Deploy(basePath string, replaceable bool, htmlIdentifier string) (string, s
return "", "", "", err
}
// basePath以下のText Fileのパスをすべて羅列する
err = generateEventsAndAddQueueAllValidStaticTextFiles(
priKey,
pubKey,
htmlIdentifier,
basePath,
replaceable,
)
if err != nil {
fmt.Println("❌ Failed to convert text files:", err)
return "", "", "", err
}
// basePath以下のMedia Fileのパスを全て羅列しアップロード
err = uploadAllValidStaticMediaFiles(priKey, pubKey, basePath)
if err != nil {
@@ -106,8 +119,8 @@ func Deploy(basePath string, replaceable bool, htmlIdentifier string) (string, s
fmt.Println("❌ Failed to get public key:", err)
return "", "", "", err
}
addNostrEventQueue(event)
fmt.Println("Added", filePath, "event to publish queue")
addNostrEventQueue(event, filePath)
eventId, encoded := publishEventsFromQueue(replaceable)
@@ -168,8 +181,7 @@ func convertLinks(
break
}
addNostrEventQueue(event)
fmt.Println("Added", filePath, "event to publish queue")
addNostrEventQueue(event, filePath)
// 置き換え可能なイベントでない場合
if !replaceable {

View File

@@ -140,6 +140,7 @@ func getReplaceableIdentifier(indexHtmlIdentifier, filePath string) string {
var nostrEventsQueue []*nostr.Event
func addNostrEventQueue(event *nostr.Event) {
func addNostrEventQueue(event *nostr.Event, filePath string) {
nostrEventsQueue = append(nostrEventsQueue, event)
fmt.Println("Added", filePath, "event to publish queue")
}