2018-01-25 04:57:33 +00:00
|
|
|
package common
|
|
|
|
|
2018-01-26 05:53:34 +00:00
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"encoding/json"
|
2018-02-15 13:15:27 +00:00
|
|
|
"errors"
|
|
|
|
"log"
|
|
|
|
"strconv"
|
2018-01-26 05:53:34 +00:00
|
|
|
|
2019-12-07 06:27:01 +00:00
|
|
|
qgen "github.com/Azareal/Gosora/query_gen"
|
2018-01-26 05:53:34 +00:00
|
|
|
)
|
2018-01-25 04:57:33 +00:00
|
|
|
|
|
|
|
var Polls PollStore
|
|
|
|
|
2018-01-26 05:53:34 +00:00
|
|
|
type PollOption struct {
|
|
|
|
ID int
|
|
|
|
Value string
|
2018-01-25 04:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Pollable interface {
|
2018-01-27 07:30:44 +00:00
|
|
|
GetID() int
|
|
|
|
GetTable() string
|
2018-01-25 04:57:33 +00:00
|
|
|
SetPoll(pollID int) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type PollStore interface {
|
|
|
|
Get(id int) (*Poll, error)
|
|
|
|
Exists(id int) bool
|
2018-01-26 05:53:34 +00:00
|
|
|
Create(parent Pollable, pollType int, pollOptions map[int]string) (int, error)
|
2020-01-02 21:52:41 +00:00
|
|
|
CastVote(optionIndex int, pollID int, uid int, ip string) error
|
2018-01-25 04:57:33 +00:00
|
|
|
Reload(id int) error
|
2019-06-01 12:31:48 +00:00
|
|
|
//Count() int
|
2018-01-25 04:57:33 +00:00
|
|
|
|
|
|
|
SetCache(cache PollCache)
|
|
|
|
GetCache() PollCache
|
|
|
|
}
|
|
|
|
|
|
|
|
type DefaultPollStore struct {
|
|
|
|
cache PollCache
|
|
|
|
|
2019-12-07 06:27:01 +00:00
|
|
|
get *sql.Stmt
|
|
|
|
exists *sql.Stmt
|
|
|
|
createPoll *sql.Stmt
|
|
|
|
createPollOption *sql.Stmt
|
|
|
|
addVote *sql.Stmt
|
|
|
|
incVoteCount *sql.Stmt
|
|
|
|
incVoteCountForOption *sql.Stmt
|
|
|
|
delete *sql.Stmt
|
2019-06-01 12:31:48 +00:00
|
|
|
//count *sql.Stmt
|
2018-01-25 04:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewDefaultPollStore(cache PollCache) (*DefaultPollStore, error) {
|
2018-08-04 11:46:36 +00:00
|
|
|
acc := qgen.NewAcc()
|
2018-01-25 04:57:33 +00:00
|
|
|
if cache == nil {
|
|
|
|
cache = NewNullPollCache()
|
|
|
|
}
|
|
|
|
// TODO: Add an admin version of registerStmt with more flexibility?
|
|
|
|
return &DefaultPollStore{
|
2019-12-07 06:27:01 +00:00
|
|
|
cache: cache,
|
|
|
|
get: acc.Select("polls").Columns("parentID, parentTable, type, options, votes").Where("pollID = ?").Prepare(),
|
|
|
|
exists: acc.Select("polls").Columns("pollID").Where("pollID = ?").Prepare(),
|
|
|
|
createPoll: acc.Insert("polls").Columns("parentID, parentTable, type, options").Fields("?,?,?,?").Prepare(),
|
|
|
|
createPollOption: acc.Insert("polls_options").Columns("pollID, option, votes").Fields("?,?,0").Prepare(),
|
Cascade delete attachments properly.
Cascade delete replied to topic events for replies properly.
Cascade delete likes on topic posts properly.
Cascade delete replies and their children properly.
Recalculate user stats properly when items are deleted.
Users can now unlike topic opening posts.
Add a recalculator to fix abnormalities across upgrades.
Try fixing a last_ip daily update bug.
Add Existable interface.
Add Delete method to LikeStore.
Add Each, Exists, Create, CountUser, CountMegaUser and CountBigUser methods to ReplyStore.
Add CountUser, CountMegaUser, CountBigUser methods to TopicStore.
Add Each method to UserStore.
Add Add, Delete and DeleteResource methods to SubscriptionStore.
Add Delete, DeleteByParams, DeleteByParamsExtra and AidsByParamsExtra methods to ActivityStream.
Add Exists method to ProfileReplyStore.
Add DropColumn, RenameColumn and ChangeColumn to the database adapters.
Shorten ipaddress column names to ip.
- topics table.
- replies table
- users_replies table.
- polls_votes table.
Add extra column to activity_stream table.
Fix an issue upgrading sites to MariaDB 10.3 from older versions of Gosora. Please report any other issues you find.
You need to run the updater / patcher for this commit.
2020-01-31 07:22:08 +00:00
|
|
|
addVote: acc.Insert("polls_votes").Columns("pollID,uid,option,castAt,ip").Fields("?,?,?,UTC_TIMESTAMP(),?").Prepare(),
|
2019-12-07 06:27:01 +00:00
|
|
|
incVoteCount: acc.Update("polls").Set("votes = votes + 1").Where("pollID = ?").Prepare(),
|
Cascade delete attachments properly.
Cascade delete replied to topic events for replies properly.
Cascade delete likes on topic posts properly.
Cascade delete replies and their children properly.
Recalculate user stats properly when items are deleted.
Users can now unlike topic opening posts.
Add a recalculator to fix abnormalities across upgrades.
Try fixing a last_ip daily update bug.
Add Existable interface.
Add Delete method to LikeStore.
Add Each, Exists, Create, CountUser, CountMegaUser and CountBigUser methods to ReplyStore.
Add CountUser, CountMegaUser, CountBigUser methods to TopicStore.
Add Each method to UserStore.
Add Add, Delete and DeleteResource methods to SubscriptionStore.
Add Delete, DeleteByParams, DeleteByParamsExtra and AidsByParamsExtra methods to ActivityStream.
Add Exists method to ProfileReplyStore.
Add DropColumn, RenameColumn and ChangeColumn to the database adapters.
Shorten ipaddress column names to ip.
- topics table.
- replies table
- users_replies table.
- polls_votes table.
Add extra column to activity_stream table.
Fix an issue upgrading sites to MariaDB 10.3 from older versions of Gosora. Please report any other issues you find.
You need to run the updater / patcher for this commit.
2020-01-31 07:22:08 +00:00
|
|
|
incVoteCountForOption: acc.Update("polls_options").Set("votes = votes + 1").Where("option=? AND pollID=?").Prepare(),
|
2019-06-01 12:31:48 +00:00
|
|
|
//count: acc.SimpleCount("polls", "", ""),
|
2018-01-25 04:57:33 +00:00
|
|
|
}, acc.FirstError()
|
|
|
|
}
|
|
|
|
|
2019-06-16 06:30:58 +00:00
|
|
|
func (s *DefaultPollStore) Exists(id int) bool {
|
|
|
|
err := s.exists.QueryRow(id).Scan(&id)
|
2018-01-25 04:57:33 +00:00
|
|
|
if err != nil && err != ErrNoRows {
|
|
|
|
LogError(err)
|
|
|
|
}
|
|
|
|
return err != ErrNoRows
|
|
|
|
}
|
|
|
|
|
2019-06-16 06:30:58 +00:00
|
|
|
func (s *DefaultPollStore) Get(id int) (*Poll, error) {
|
|
|
|
poll, err := s.cache.Get(id)
|
2018-01-25 04:57:33 +00:00
|
|
|
if err == nil {
|
|
|
|
return poll, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
poll = &Poll{ID: id}
|
|
|
|
var optionTxt []byte
|
2019-06-16 06:30:58 +00:00
|
|
|
err = s.get.QueryRow(id).Scan(&poll.ParentID, &poll.ParentTable, &poll.Type, &optionTxt, &poll.VoteCount)
|
2018-01-26 05:53:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = json.Unmarshal(optionTxt, &poll.Options)
|
2018-01-25 04:57:33 +00:00
|
|
|
if err == nil {
|
2019-06-16 06:30:58 +00:00
|
|
|
poll.QuickOptions = s.unpackOptionsMap(poll.Options)
|
|
|
|
s.cache.Set(poll)
|
2018-01-25 04:57:33 +00:00
|
|
|
}
|
|
|
|
return poll, err
|
|
|
|
}
|
|
|
|
|
2018-02-15 13:15:27 +00:00
|
|
|
// TODO: Optimise the query to avoid preparing it on the spot? Maybe, use knowledge of the most common IN() parameter counts?
|
|
|
|
// TODO: ID of 0 should always error?
|
2019-06-16 06:30:58 +00:00
|
|
|
func (s *DefaultPollStore) BulkGetMap(ids []int) (list map[int]*Poll, err error) {
|
2019-10-29 01:58:04 +00:00
|
|
|
idCount := len(ids)
|
2018-02-15 13:15:27 +00:00
|
|
|
list = make(map[int]*Poll)
|
|
|
|
if idCount == 0 {
|
|
|
|
return list, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var stillHere []int
|
2019-06-16 06:30:58 +00:00
|
|
|
sliceList := s.cache.BulkGet(ids)
|
2018-02-15 13:15:27 +00:00
|
|
|
for i, sliceItem := range sliceList {
|
|
|
|
if sliceItem != nil {
|
|
|
|
list[sliceItem.ID] = sliceItem
|
|
|
|
} else {
|
|
|
|
stillHere = append(stillHere, ids[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ids = stillHere
|
|
|
|
|
|
|
|
// If every user is in the cache, then return immediately
|
|
|
|
if len(ids) == 0 {
|
|
|
|
return list, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Add a function for the qlist stuff
|
2019-08-28 06:47:54 +00:00
|
|
|
var q string
|
2019-12-07 06:27:01 +00:00
|
|
|
idList := make([]interface{}, len(ids))
|
2019-07-26 22:36:06 +00:00
|
|
|
for i, id := range ids {
|
|
|
|
idList[i] = strconv.Itoa(id)
|
2019-08-28 06:47:54 +00:00
|
|
|
q += "?,"
|
2018-02-15 13:15:27 +00:00
|
|
|
}
|
2019-08-28 06:47:54 +00:00
|
|
|
q = q[0 : len(q)-1]
|
2018-02-15 13:15:27 +00:00
|
|
|
|
2019-08-28 06:47:54 +00:00
|
|
|
rows, err := qgen.NewAcc().Select("polls").Columns("pollID,parentID,parentTable,type,options,votes").Where("pollID IN(" + q + ")").Query(idList...)
|
2018-02-15 13:15:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return list, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for rows.Next() {
|
2019-10-29 01:58:04 +00:00
|
|
|
p := &Poll{ID: 0}
|
2018-02-15 13:15:27 +00:00
|
|
|
var optionTxt []byte
|
2019-10-29 01:58:04 +00:00
|
|
|
err := rows.Scan(&p.ID, &p.ParentID, &p.ParentTable, &p.Type, &optionTxt, &p.VoteCount)
|
2018-02-15 13:15:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return list, err
|
|
|
|
}
|
|
|
|
|
2019-10-29 01:58:04 +00:00
|
|
|
err = json.Unmarshal(optionTxt, &p.Options)
|
2018-02-15 13:15:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return list, err
|
|
|
|
}
|
2019-10-29 01:58:04 +00:00
|
|
|
p.QuickOptions = s.unpackOptionsMap(p.Options)
|
|
|
|
s.cache.Set(p)
|
2018-02-15 13:15:27 +00:00
|
|
|
|
2019-10-29 01:58:04 +00:00
|
|
|
list[p.ID] = p
|
2018-02-15 13:15:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Did we miss any polls?
|
|
|
|
if idCount > len(list) {
|
|
|
|
var sidList string
|
|
|
|
for _, id := range ids {
|
|
|
|
_, ok := list[id]
|
|
|
|
if !ok {
|
|
|
|
sidList += strconv.Itoa(id) + ","
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We probably don't need this, but it might be useful in case of bugs in BulkCascadeGetMap
|
|
|
|
if sidList == "" {
|
2018-02-19 04:26:01 +00:00
|
|
|
// TODO: Bulk log this
|
2018-02-15 13:15:27 +00:00
|
|
|
if Dev.DebugMode {
|
|
|
|
log.Print("This data is sampled later in the BulkCascadeGetMap function, so it might miss the cached IDs")
|
|
|
|
log.Print("idCount", idCount)
|
|
|
|
log.Print("ids", ids)
|
|
|
|
log.Print("list", list)
|
|
|
|
}
|
|
|
|
return list, errors.New("We weren't able to find a poll, but we don't know which one")
|
|
|
|
}
|
|
|
|
sidList = sidList[0 : len(sidList)-1]
|
|
|
|
|
|
|
|
err = errors.New("Unable to find the polls with the following IDs: " + sidList)
|
|
|
|
}
|
|
|
|
|
|
|
|
return list, err
|
|
|
|
}
|
|
|
|
|
2019-06-16 06:30:58 +00:00
|
|
|
func (s *DefaultPollStore) Reload(id int) error {
|
2019-10-29 01:58:04 +00:00
|
|
|
p := &Poll{ID: id}
|
2018-01-25 04:57:33 +00:00
|
|
|
var optionTxt []byte
|
2019-10-29 01:58:04 +00:00
|
|
|
err := s.get.QueryRow(id).Scan(&p.ParentID, &p.ParentTable, &p.Type, &optionTxt, &p.VoteCount)
|
2018-01-25 04:57:33 +00:00
|
|
|
if err != nil {
|
2019-06-16 06:30:58 +00:00
|
|
|
s.cache.Remove(id)
|
2018-01-25 04:57:33 +00:00
|
|
|
return err
|
|
|
|
}
|
2018-01-26 05:53:34 +00:00
|
|
|
|
2019-10-29 01:58:04 +00:00
|
|
|
err = json.Unmarshal(optionTxt, &p.Options)
|
2018-01-26 05:53:34 +00:00
|
|
|
if err != nil {
|
2019-06-16 06:30:58 +00:00
|
|
|
s.cache.Remove(id)
|
2018-01-26 05:53:34 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-29 01:58:04 +00:00
|
|
|
p.QuickOptions = s.unpackOptionsMap(p.Options)
|
|
|
|
_ = s.cache.Set(p)
|
2018-01-25 04:57:33 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-06-16 06:30:58 +00:00
|
|
|
func (s *DefaultPollStore) unpackOptionsMap(rawOptions map[int]string) []PollOption {
|
2018-01-26 05:53:34 +00:00
|
|
|
options := make([]PollOption, len(rawOptions))
|
|
|
|
for id, option := range rawOptions {
|
|
|
|
options[id] = PollOption{id, option}
|
|
|
|
}
|
|
|
|
return options
|
|
|
|
}
|
|
|
|
|
2018-01-27 07:30:44 +00:00
|
|
|
// TODO: Use a transaction for this?
|
2020-01-02 09:49:34 +00:00
|
|
|
func (s *DefaultPollStore) CastVote(optionIndex int, pollID int, uid int, ip string) error {
|
|
|
|
if Config.DisablePollIP {
|
|
|
|
ip = "0"
|
|
|
|
}
|
|
|
|
_, err := s.addVote.Exec(pollID, uid, optionIndex, ip)
|
2018-01-27 07:30:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-12-07 06:27:01 +00:00
|
|
|
_, err = s.incVoteCount.Exec(pollID)
|
2018-01-28 14:30:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-12-07 06:27:01 +00:00
|
|
|
_, err = s.incVoteCountForOption.Exec(optionIndex, pollID)
|
2018-01-27 07:30:44 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-01-28 14:30:24 +00:00
|
|
|
// TODO: Use a transaction for this
|
2019-06-16 06:30:58 +00:00
|
|
|
func (s *DefaultPollStore) Create(parent Pollable, pollType int, pollOptions map[int]string) (id int, err error) {
|
2018-01-26 05:53:34 +00:00
|
|
|
pollOptionsTxt, err := json.Marshal(pollOptions)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2019-06-16 06:30:58 +00:00
|
|
|
res, err := s.createPoll.Exec(parent.GetID(), parent.GetTable(), pollType, pollOptionsTxt)
|
2018-01-25 04:57:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
lastID, err := res.LastInsertId()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2018-01-28 14:30:24 +00:00
|
|
|
|
|
|
|
for i := 0; i < len(pollOptions); i++ {
|
2019-06-16 06:30:58 +00:00
|
|
|
_, err := s.createPollOption.Exec(lastID, i)
|
2018-01-28 14:30:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
}
|
2019-12-07 06:27:01 +00:00
|
|
|
|
2019-10-29 01:58:04 +00:00
|
|
|
id = int(lastID)
|
|
|
|
return id, parent.SetPoll(id) // TODO: Delete the poll (and options) if SetPoll fails
|
2018-01-25 04:57:33 +00:00
|
|
|
}
|
|
|
|
|
2019-06-16 06:30:58 +00:00
|
|
|
func (s *DefaultPollStore) SetCache(cache PollCache) {
|
|
|
|
s.cache = cache
|
2018-01-25 04:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: We're temporarily doing this so that you can do ucache != nil in getTopicUser. Refactor it.
|
2019-06-16 06:30:58 +00:00
|
|
|
func (s *DefaultPollStore) GetCache() PollCache {
|
|
|
|
_, ok := s.cache.(*NullPollCache)
|
2018-01-25 04:57:33 +00:00
|
|
|
if ok {
|
|
|
|
return nil
|
|
|
|
}
|
2019-06-16 06:30:58 +00:00
|
|
|
return s.cache
|
2018-01-25 04:57:33 +00:00
|
|
|
}
|