mirror of https://github.com/jlelse/GoBlog
Simple blogging system written in Go
https://goblog.app
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
914 B
46 lines
914 B
package main |
|
|
|
import ( |
|
"log" |
|
"time" |
|
) |
|
|
|
func (a *goBlog) startPostsScheduler() { |
|
ticker := time.NewTicker(30 * time.Second) |
|
done := make(chan struct{}) |
|
go func() { |
|
for { |
|
select { |
|
case <-done: |
|
return |
|
case <-ticker.C: |
|
a.checkScheduledPosts() |
|
} |
|
} |
|
}() |
|
a.shutdown.Add(func() { |
|
ticker.Stop() |
|
done <- struct{}{} |
|
log.Println("Posts scheduler stopped") |
|
}) |
|
} |
|
|
|
func (a *goBlog) checkScheduledPosts() { |
|
postsToPublish, err := a.getPosts(&postsRequestConfig{ |
|
status: statusScheduled, |
|
publishedBefore: time.Now(), |
|
}) |
|
if err != nil { |
|
log.Println("Error getting scheduled posts:", err) |
|
return |
|
} |
|
for _, post := range postsToPublish { |
|
post.Status = statusPublished |
|
err := a.replacePost(post, post.Path, statusScheduled) |
|
if err != nil { |
|
log.Println("Error publishing scheduled post:", err) |
|
continue |
|
} |
|
log.Println("Published scheduled post:", post.Path) |
|
} |
|
}
|
|
|