27 lines
445 B
Go
Raw Normal View History

2018-11-05 15:24:41 +00:00
package main
import (
2019-04-23 05:45:17 +00:00
"github.com/akyoto/color"
2019-04-23 05:52:55 +00:00
"github.com/animenotifier/arn"
2018-11-05 15:24:41 +00:00
)
func main() {
color.Yellow("Sorting posts by date")
defer color.Green("Finished.")
defer arn.Node.Close()
for thread := range arn.StreamThreads() {
posts := thread.Posts()
arn.SortPostsLatestLast(posts)
postIDs := []string{}
for _, post := range posts {
postIDs = append(postIDs, post.ID)
}
thread.PostIDs = postIDs
thread.Save()
}
}