2019-06-05 06:00:40 +00:00
|
|
|
package common
|
|
|
|
|
2019-10-19 10:33:59 +00:00
|
|
|
import (
|
2022-02-21 03:53:13 +00:00
|
|
|
"database/sql"
|
2019-10-19 10:33:59 +00:00
|
|
|
|
2022-02-21 03:53:13 +00:00
|
|
|
qgen "git.tuxpa.in/a/gosora/query_gen"
|
2019-10-19 10:33:59 +00:00
|
|
|
)
|
2019-06-05 06:00:40 +00:00
|
|
|
|
|
|
|
var Likes LikeStore
|
|
|
|
|
|
|
|
type LikeStore interface {
|
2022-02-21 03:32:53 +00:00
|
|
|
BulkExists(ids []int, sentBy int, targetType string) ([]int, error)
|
|
|
|
BulkExistsFunc(ids []int, sentBy int, targetType string, f func(int) error) error
|
|
|
|
Delete(targetID int, targetType string) error
|
|
|
|
Count() (count int)
|
2019-06-05 06:00:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DefaultLikeStore struct {
|
2022-02-21 03:32:53 +00:00
|
|
|
count *sql.Stmt
|
|
|
|
delete *sql.Stmt
|
|
|
|
singleExists *sql.Stmt
|
2019-06-05 06:00:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewDefaultLikeStore(acc *qgen.Accumulator) (*DefaultLikeStore, error) {
|
2022-02-21 03:32:53 +00:00
|
|
|
return &DefaultLikeStore{
|
|
|
|
count: acc.Count("likes").Prepare(),
|
|
|
|
delete: acc.Delete("likes").Where("targetItem=? AND targetType=?").Prepare(),
|
|
|
|
singleExists: acc.Select("likes").Columns("targetItem").Where("sentBy=? AND targetType=? AND targetItem=?").Prepare(),
|
|
|
|
}, acc.FirstError()
|
2019-06-05 06:00:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Write a test for this
|
2020-12-17 20:38:30 +00:00
|
|
|
func (s *DefaultLikeStore) BulkExists(ids []int, sentBy int, targetType string) (eids []int, e error) {
|
2022-02-21 03:32:53 +00:00
|
|
|
if len(ids) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
var rows *sql.Rows
|
|
|
|
if len(ids) == 1 {
|
|
|
|
rows, e = s.singleExists.Query(sentBy, targetType, ids[0])
|
|
|
|
} else {
|
|
|
|
rows, e = qgen.NewAcc().Select("likes").Columns("targetItem").Where("sentBy=? AND targetType=?").In("targetItem", ids).Query(sentBy, targetType)
|
|
|
|
}
|
|
|
|
if e == sql.ErrNoRows {
|
|
|
|
return nil, nil
|
|
|
|
} else if e != nil {
|
|
|
|
return nil, e
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
2019-06-05 06:00:40 +00:00
|
|
|
|
2022-02-21 03:32:53 +00:00
|
|
|
var id int
|
|
|
|
for rows.Next() {
|
|
|
|
if e := rows.Scan(&id); e != nil {
|
|
|
|
return nil, e
|
|
|
|
}
|
|
|
|
eids = append(eids, id)
|
|
|
|
}
|
|
|
|
return eids, rows.Err()
|
2019-06-05 06:00:40 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 12:59:48 +00:00
|
|
|
// TODO: Write a test for this
|
|
|
|
func (s *DefaultLikeStore) BulkExistsFunc(ids []int, sentBy int, targetType string, f func(id int) error) (e error) {
|
2022-02-21 03:32:53 +00:00
|
|
|
if len(ids) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var rows *sql.Rows
|
|
|
|
if len(ids) == 1 {
|
|
|
|
rows, e = s.singleExists.Query(sentBy, targetType, ids[0])
|
|
|
|
} else {
|
|
|
|
rows, e = qgen.NewAcc().Select("likes").Columns("targetItem").Where("sentBy=? AND targetType=?").In("targetItem", ids).Query(sentBy, targetType)
|
|
|
|
}
|
|
|
|
if e == sql.ErrNoRows {
|
|
|
|
return nil
|
|
|
|
} else if e != nil {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
2021-04-29 12:59:48 +00:00
|
|
|
|
2022-02-21 03:32:53 +00:00
|
|
|
var id int
|
|
|
|
for rows.Next() {
|
|
|
|
if e := rows.Scan(&id); e != nil {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
if e := f(id); e != nil {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rows.Err()
|
2021-04-29 12:59:48 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
func (s *DefaultLikeStore) Delete(targetID int, targetType string) error {
|
2022-02-21 03:32:53 +00:00
|
|
|
_, err := s.delete.Exec(targetID, targetType)
|
|
|
|
return err
|
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
|
|
|
}
|
|
|
|
|
2019-06-05 06:00:40 +00:00
|
|
|
// TODO: Write a test for this
|
|
|
|
// Count returns the total number of likes globally
|
|
|
|
func (s *DefaultLikeStore) Count() (count int) {
|
2022-02-21 03:32:53 +00:00
|
|
|
e := s.count.QueryRow().Scan(&count)
|
|
|
|
if e != nil {
|
|
|
|
LogError(e)
|
|
|
|
}
|
|
|
|
return count
|
2019-10-19 10:33:59 +00:00
|
|
|
}
|