The forum list should be updated properly now when a topic is deleted.
This commit is contained in:
parent
c928c84c95
commit
1ad3e9c9da
|
@ -10,12 +10,13 @@ import (
|
||||||
"database/sql"
|
"database/sql"
|
||||||
"errors"
|
"errors"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
//"fmt"
|
//"fmt"
|
||||||
"sort"
|
"sort"
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
|
|
||||||
"github.com/Azareal/Gosora/query_gen"
|
qgen "github.com/Azareal/Gosora/query_gen"
|
||||||
)
|
)
|
||||||
|
|
||||||
var forumCreateMutex sync.Mutex
|
var forumCreateMutex sync.Mutex
|
||||||
|
@ -70,6 +71,7 @@ type MemoryForumStore struct {
|
||||||
updateCache *sql.Stmt
|
updateCache *sql.Stmt
|
||||||
addTopics *sql.Stmt
|
addTopics *sql.Stmt
|
||||||
removeTopics *sql.Stmt
|
removeTopics *sql.Stmt
|
||||||
|
lastTopic *sql.Stmt
|
||||||
updateOrder *sql.Stmt
|
updateOrder *sql.Stmt
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -87,6 +89,7 @@ func NewMemoryForumStore() (*MemoryForumStore, error) {
|
||||||
updateCache: acc.Update(f).Set("lastTopicID = ?, lastReplyerID = ?").Where("fid = ?").Prepare(),
|
updateCache: acc.Update(f).Set("lastTopicID = ?, lastReplyerID = ?").Where("fid = ?").Prepare(),
|
||||||
addTopics: acc.Update(f).Set("topicCount=topicCount+?").Where("fid = ?").Prepare(),
|
addTopics: acc.Update(f).Set("topicCount=topicCount+?").Where("fid = ?").Prepare(),
|
||||||
removeTopics: acc.Update(f).Set("topicCount=topicCount-?").Where("fid = ?").Prepare(),
|
removeTopics: acc.Update(f).Set("topicCount=topicCount-?").Where("fid = ?").Prepare(),
|
||||||
|
lastTopic: acc.Select("topics").Columns("tid").Where("parentID = ?").Orderby("lastReplyAt DESC, createdAt DESC").Limit("1").Prepare(),
|
||||||
updateOrder: acc.Update(f).Set("order = ?").Where("fid = ?").Prepare(),
|
updateOrder: acc.Update(f).Set("order = ?").Where("fid = ?").Prepare(),
|
||||||
}, acc.FirstError()
|
}, acc.FirstError()
|
||||||
}
|
}
|
||||||
|
@ -184,7 +187,7 @@ func (s *MemoryForumStore) Get(id int) (*Forum, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *MemoryForumStore) BypassGet(id int) (*Forum, error) {
|
func (s *MemoryForumStore) BypassGet(id int) (*Forum, error) {
|
||||||
var f = &Forum{ID: id}
|
f := &Forum{ID: id}
|
||||||
err := s.get.QueryRow(id).Scan(&f.Name, &f.Desc, &f.Tmpl, &f.Active, &f.Order, &f.Preset, &f.ParentID, &f.ParentType, &f.TopicCount, &f.LastTopicID, &f.LastReplyerID)
|
err := s.get.QueryRow(id).Scan(&f.Name, &f.Desc, &f.Tmpl, &f.Active, &f.Order, &f.Preset, &f.ParentID, &f.ParentType, &f.TopicCount, &f.LastTopicID, &f.LastReplyerID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -308,12 +311,35 @@ func (s *MemoryForumStore) AddTopic(tid int, uid int, fid int) error {
|
||||||
return s.Reload(fid)
|
return s.Reload(fid)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Update the forum cache with the latest topic
|
// TODO: Make this update more atomic
|
||||||
func (s *MemoryForumStore) RemoveTopic(fid int) error {
|
func (s *MemoryForumStore) RemoveTopic(fid int) error {
|
||||||
_, err := s.removeTopics.Exec(1, fid)
|
_, err := s.removeTopics.Exec(1, fid)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var tid int
|
||||||
|
err = s.lastTopic.QueryRow(fid).Scan(&tid)
|
||||||
|
if err == sql.ErrNoRows {
|
||||||
|
_, err = s.updateCache.Exec(0, 0, fid)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
s.Reload(fid)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
topic, err := Topics.Get(tid)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
_, err = s.updateCache.Exec(tid, topic.CreatedBy, fid)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
// TODO: Bypass the database and update this with a lock or an unsafe atomic swap
|
// TODO: Bypass the database and update this with a lock or an unsafe atomic swap
|
||||||
s.Reload(fid)
|
s.Reload(fid)
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue