2018-01-22 08:15:45 +00:00
package common
import (
2022-02-21 03:53:13 +00:00
"database/sql"
"errors"
2020-02-19 10:32:26 +00:00
2022-02-21 03:53:13 +00:00
//"fmt"
"os"
"path/filepath"
"strings"
2018-01-22 08:15:45 +00:00
2022-02-21 03:53:13 +00:00
qgen "git.tuxpa.in/a/gosora/query_gen"
2018-01-22 08:15:45 +00:00
)
var Attachments AttachmentStore
2021-03-24 11:45:18 +00:00
var ErrCorruptAttachPath = errors . New ( "corrupt attachment path" )
2018-12-27 05:42:41 +00:00
type MiniAttachment struct {
2022-02-21 03:32:53 +00:00
ID int
SectionID int
OriginID int
UploadedBy int
Path string
Extra string
Image bool
Ext string
2018-12-27 05:42:41 +00:00
}
2020-02-20 04:32:49 +00:00
type Attachment struct {
2022-02-21 03:32:53 +00:00
ID int
SectionTable string
SectionID int
OriginTable string
OriginID int
UploadedBy int
Path string
Extra string
Image bool
Ext string
2020-02-20 04:32:49 +00:00
}
2018-01-22 08:15:45 +00:00
type AttachmentStore interface {
2022-02-21 03:32:53 +00:00
GetForRenderRoute ( filename string , sid int , sectionTable string ) ( * Attachment , error )
FGet ( id int ) ( * Attachment , error )
Get ( id int ) ( * MiniAttachment , error )
MiniGetList ( originTable string , originID int ) ( alist [ ] * MiniAttachment , err error )
BulkMiniGetList ( originTable string , ids [ ] int ) ( amap map [ int ] [ ] * MiniAttachment , err error )
Add ( sectionID int , sectionTable string , originID int , originTable string , uploadedBy int , path , extra string ) ( int , error )
MoveTo ( sectionID , originID int , originTable string ) error
MoveToByExtra ( sectionID int , originTable , extra string ) error
Count ( ) int
CountIn ( originTable string , oid int ) int
CountInPath ( path string ) int
Delete ( id int ) error
AddLinked ( otable string , oid int ) ( err error )
RemoveLinked ( otable string , oid int ) ( err error )
2018-01-22 08:15:45 +00:00
}
type DefaultAttachmentStore struct {
2022-02-21 03:32:53 +00:00
getForRenderRoute * sql . Stmt
fget * sql . Stmt
get * sql . Stmt
getByObj * sql . Stmt
add * sql . Stmt
count * sql . Stmt
countIn * sql . Stmt
countInPath * sql . Stmt
move * sql . Stmt
moveByExtra * sql . Stmt
delete * sql . Stmt
replyUpdateAttachs * sql . Stmt
topicUpdateAttachs * sql . Stmt
2018-01-22 08:15:45 +00:00
}
2019-04-13 11:54:22 +00:00
func NewDefaultAttachmentStore ( acc * qgen . Accumulator ) ( * DefaultAttachmentStore , error ) {
2022-02-21 03:32:53 +00:00
a := "attachments"
return & DefaultAttachmentStore {
getForRenderRoute : acc . Select ( a ) . Columns ( "sectionTable, originID, originTable, uploadedBy, path" ) . Where ( "path=? AND sectionID=? AND sectionTable=?" ) . Prepare ( ) ,
fget : acc . Select ( a ) . Columns ( "originTable, originID, sectionTable, sectionID, uploadedBy, path, extra" ) . Where ( "attachID=?" ) . Prepare ( ) ,
get : acc . Select ( a ) . Columns ( "originID, sectionID, uploadedBy, path, extra" ) . Where ( "attachID=?" ) . Prepare ( ) ,
getByObj : acc . Select ( a ) . Columns ( "attachID, sectionID, uploadedBy, path, extra" ) . Where ( "originTable=? AND originID=?" ) . Prepare ( ) ,
add : acc . Insert ( a ) . Columns ( "sectionID, sectionTable, originID, originTable, uploadedBy, path, extra" ) . Fields ( "?,?,?,?,?,?,?" ) . Prepare ( ) ,
count : acc . Count ( a ) . Prepare ( ) ,
countIn : acc . Count ( a ) . Where ( "originTable=? and originID=?" ) . Prepare ( ) ,
countInPath : acc . Count ( a ) . Where ( "path=?" ) . Prepare ( ) ,
move : acc . Update ( a ) . Set ( "sectionID=?" ) . Where ( "originID=? AND originTable=?" ) . Prepare ( ) ,
moveByExtra : acc . Update ( a ) . Set ( "sectionID=?" ) . Where ( "originTable=? AND extra=?" ) . Prepare ( ) ,
delete : acc . Delete ( a ) . Where ( "attachID=?" ) . Prepare ( ) ,
// TODO: Less race-y attachment count updates
replyUpdateAttachs : acc . Update ( "replies" ) . Set ( "attachCount=?" ) . Where ( "rid=?" ) . Prepare ( ) ,
topicUpdateAttachs : acc . Update ( "topics" ) . Set ( "attachCount=?" ) . Where ( "tid=?" ) . Prepare ( ) ,
} , acc . FirstError ( )
2018-01-22 08:15:45 +00:00
}
2021-03-24 11:45:18 +00:00
// TODO: Revamp this to make it less of a copy-paste from the original code in the route
// ! Lacks some attachment initialisation code
func ( s * DefaultAttachmentStore ) GetForRenderRoute ( filename string , sid int , sectionTable string ) ( * Attachment , error ) {
2022-02-21 03:32:53 +00:00
a := & Attachment { SectionID : sid }
e := s . getForRenderRoute . QueryRow ( filename , sid , sectionTable ) . Scan ( & a . SectionTable , & a . OriginID , & a . OriginTable , & a . UploadedBy , & a . Path )
// TODO: Initialise attachment struct fields?
return a , e
2021-03-24 11:45:18 +00:00
}
2019-09-29 05:10:05 +00:00
func ( s * DefaultAttachmentStore ) MiniGetList ( originTable string , originID int ) ( alist [ ] * MiniAttachment , err error ) {
2022-02-21 03:32:53 +00:00
rows , err := s . getByObj . Query ( originTable , originID )
defer rows . Close ( )
for rows . Next ( ) {
a := & MiniAttachment { OriginID : originID }
err := rows . Scan ( & a . ID , & a . SectionID , & a . UploadedBy , & a . Path , & a . Extra )
if err != nil {
return nil , err
}
a . Ext = strings . TrimPrefix ( filepath . Ext ( a . Path ) , "." )
if len ( a . Ext ) == 0 {
return nil , ErrCorruptAttachPath
}
a . Image = ImageFileExts . Contains ( a . Ext )
alist = append ( alist , a )
}
if err = rows . Err ( ) ; err != nil {
return nil , err
}
if len ( alist ) == 0 {
err = sql . ErrNoRows
}
return alist , err
2018-12-27 05:42:41 +00:00
}
2019-09-29 05:10:05 +00:00
func ( s * DefaultAttachmentStore ) BulkMiniGetList ( originTable string , ids [ ] int ) ( amap map [ int ] [ ] * MiniAttachment , err error ) {
2022-02-21 03:32:53 +00:00
if len ( ids ) == 0 {
return nil , sql . ErrNoRows
}
if len ( ids ) == 1 {
res , err := s . MiniGetList ( originTable , ids [ 0 ] )
return map [ int ] [ ] * MiniAttachment { ids [ 0 ] : res } , err
}
amap = make ( map [ int ] [ ] * MiniAttachment )
var buffer [ ] * MiniAttachment
var currentID int
rows , err := qgen . NewAcc ( ) . Select ( "attachments" ) . Columns ( "attachID,sectionID,originID,uploadedBy,path" ) . Where ( "originTable=?" ) . In ( "originID" , ids ) . Orderby ( "originID ASC" ) . Query ( originTable )
defer rows . Close ( )
for rows . Next ( ) {
a := & MiniAttachment { }
err := rows . Scan ( & a . ID , & a . SectionID , & a . OriginID , & a . UploadedBy , & a . Path )
if err != nil {
return nil , err
}
a . Ext = strings . TrimPrefix ( filepath . Ext ( a . Path ) , "." )
if len ( a . Ext ) == 0 {
return nil , ErrCorruptAttachPath
}
a . Image = ImageFileExts . Contains ( a . Ext )
if currentID == 0 {
currentID = a . OriginID
}
if a . OriginID != currentID {
if len ( buffer ) > 0 {
amap [ currentID ] = buffer
currentID = a . OriginID
buffer = nil
}
}
buffer = append ( buffer , a )
}
if len ( buffer ) > 0 {
amap [ currentID ] = buffer
}
return amap , rows . Err ( )
2018-12-31 09:03:49 +00:00
}
2020-02-20 04:32:49 +00:00
func ( s * DefaultAttachmentStore ) FGet ( id int ) ( * Attachment , error ) {
2022-02-21 03:32:53 +00:00
a := & Attachment { ID : id }
e := s . fget . QueryRow ( id ) . Scan ( & a . OriginTable , & a . OriginID , & a . SectionTable , & a . SectionID , & a . UploadedBy , & a . Path , & a . Extra )
if e != nil {
return nil , e
}
a . Ext = strings . TrimPrefix ( filepath . Ext ( a . Path ) , "." )
if len ( a . Ext ) == 0 {
return nil , ErrCorruptAttachPath
}
a . Image = ImageFileExts . Contains ( a . Ext )
return a , nil
2020-02-20 04:32:49 +00:00
}
2019-09-29 05:10:05 +00:00
func ( s * DefaultAttachmentStore ) Get ( id int ) ( * MiniAttachment , error ) {
2022-02-21 03:32:53 +00:00
a := & MiniAttachment { ID : id }
err := s . get . QueryRow ( id ) . Scan ( & a . OriginID , & a . SectionID , & a . UploadedBy , & a . Path , & a . Extra )
if err != nil {
return nil , err
}
a . Ext = strings . TrimPrefix ( filepath . Ext ( a . Path ) , "." )
if len ( a . Ext ) == 0 {
return nil , ErrCorruptAttachPath
}
a . Image = ImageFileExts . Contains ( a . Ext )
return a , nil
2018-12-27 05:42:41 +00:00
}
2020-01-23 06:17:50 +00:00
func ( s * DefaultAttachmentStore ) Add ( sectionID int , sectionTable string , originID int , originTable string , uploadedBy int , path , extra string ) ( int , error ) {
2022-02-21 03:32:53 +00:00
res , err := s . add . Exec ( sectionID , sectionTable , originID , originTable , uploadedBy , path , extra )
if err != nil {
return 0 , err
}
lid , err := res . LastInsertId ( )
return int ( lid ) , err
2018-12-27 05:42:41 +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 * DefaultAttachmentStore ) MoveTo ( sectionID , originID int , originTable string ) error {
2022-02-21 03:32:53 +00:00
_ , err := s . move . Exec ( sectionID , originID , originTable )
return err
2019-04-13 11:54:22 +00:00
}
2020-01-23 06:17:50 +00:00
func ( s * DefaultAttachmentStore ) MoveToByExtra ( sectionID int , originTable , extra string ) error {
2022-02-21 03:32:53 +00:00
_ , err := s . moveByExtra . Exec ( sectionID , originTable , extra )
return err
2019-04-13 11:54:22 +00:00
}
2019-06-01 12:31:48 +00:00
func ( s * DefaultAttachmentStore ) Count ( ) ( count int ) {
2022-02-21 03:32:53 +00:00
e := s . count . QueryRow ( ) . Scan ( & count )
if e != nil {
LogError ( e )
}
return count
2018-12-27 05:42:41 +00:00
}
2019-09-29 05:10:05 +00:00
func ( s * DefaultAttachmentStore ) CountIn ( originTable string , oid int ) ( count int ) {
2022-02-21 03:32:53 +00:00
e := s . countIn . QueryRow ( originTable , oid ) . Scan ( & count )
if e != nil {
LogError ( e )
}
return count
2018-12-27 05:42:41 +00:00
}
2019-09-29 05:10:05 +00:00
func ( s * DefaultAttachmentStore ) CountInPath ( path string ) ( count int ) {
2022-02-21 03:32:53 +00:00
e := s . countInPath . QueryRow ( path ) . Scan ( & count )
if e != nil {
LogError ( e )
}
return count
2018-12-27 05:42:41 +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 * DefaultAttachmentStore ) Delete ( id int ) error {
2022-02-21 03:32:53 +00:00
_ , e := s . delete . Exec ( id )
return e
2018-01-22 08:15:45 +00:00
}
2020-01-23 06:17:50 +00:00
2020-02-19 10:32:26 +00:00
// TODO: Split this out of this store
2020-02-20 04:32:49 +00:00
func ( s * DefaultAttachmentStore ) AddLinked ( otable string , oid int ) ( err error ) {
2022-02-21 03:32:53 +00:00
switch otable {
case "topics" :
_ , err = s . topicUpdateAttachs . Exec ( s . CountIn ( otable , oid ) , oid )
if err != nil {
return err
}
err = Topics . Reload ( oid )
case "replies" :
_ , err = s . replyUpdateAttachs . Exec ( s . CountIn ( otable , oid ) , oid )
if err != nil {
return err
}
err = Rstore . GetCache ( ) . Remove ( oid )
}
if err == sql . ErrNoRows {
err = nil
}
return err
2020-02-20 04:32:49 +00:00
}
// TODO: Split this out of this store
func ( s * DefaultAttachmentStore ) RemoveLinked ( otable string , oid int ) ( err error ) {
2022-02-21 03:32:53 +00:00
switch otable {
case "topics" :
_ , err = s . topicUpdateAttachs . Exec ( s . CountIn ( otable , oid ) , oid )
if err != nil {
return err
}
if tc := Topics . GetCache ( ) ; tc != nil {
tc . Remove ( oid )
}
case "replies" :
_ , err = s . replyUpdateAttachs . Exec ( s . CountIn ( otable , oid ) , oid )
if err != nil {
return err
}
err = Rstore . GetCache ( ) . Remove ( oid )
}
return err
2020-02-19 10:32:26 +00:00
}
2020-01-23 06:17:50 +00:00
// TODO: Add a table for the files and lock the file row when performing tasks related to the file
func DeleteAttachment ( aid int ) error {
2022-02-21 03:32:53 +00:00
a , err := Attachments . FGet ( aid )
if err != nil {
return err
}
err = deleteAttachment ( a )
if err != nil {
return err
}
_ = Attachments . RemoveLinked ( a . OriginTable , a . OriginID )
return nil
2020-02-20 04:32:49 +00:00
}
func deleteAttachment ( a * Attachment ) error {
2022-02-21 03:32:53 +00:00
err := Attachments . Delete ( a . ID )
if err != nil {
return err
}
count := Attachments . CountInPath ( a . Path )
if count == 0 {
err := os . Remove ( "./attachs/" + a . Path )
if err != nil {
return err
}
}
return nil
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
}