Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/models/comment.go

47 lignes
1,4 Kio
Go
Brut Vue normale Historique

package models
import (
"html/template"
"time"
2017-05-24 09:11:13 +02:00
2017-05-22 00:22:42 +02:00
"github.com/NyaaPantsu/nyaa/config"
)
// Comment model
type Comment struct {
ID uint `gorm:"column:comment_id;primary_key"`
TorrentID uint `gorm:"column:torrent_id"`
UserID uint `gorm:"column:user_id"`
2017-05-08 19:26:29 +02:00
Content string `gorm:"column:content"`
CreatedAt time.Time `gorm:"column:created_at"`
UpdatedAt time.Time `gorm:"column:updated_at"`
2017-05-10 09:10:23 +02:00
DeletedAt *time.Time
2017-05-08 19:26:29 +02:00
2017-05-12 01:40:02 +02:00
Torrent *Torrent `gorm:"AssociationForeignKey:TorrentID;ForeignKey:torrent_id"`
User *User `gorm:"AssociationForeignKey:UserID;ForeignKey:user_id"`
2017-05-10 10:27:17 +02:00
}
// CommentJSON for comment model in json
type CommentJSON struct {
Username string `json:"username"`
UserID int `json:"user_id"`
UserAvatar string `json:"user_avatar"`
Content template.HTML `json:"content"`
Date time.Time `json:"date"`
}
// Size : Returns the total size of memory recursively allocated for this struct
2017-05-10 10:27:17 +02:00
func (c Comment) Size() int {
return (3 + 3*3 + 2 + 2 + len(c.Content)) * 8
2017-05-08 19:26:29 +02:00
}
// TableName : Return the name of comment table
func (c Comment) TableName() string {
return config.Conf.Models.CommentsTableName
}
// Identifier : Return the identifier of the comment
2017-05-22 00:22:42 +02:00
func (c *Comment) Identifier() string { // We Can personalize the identifier but we would have to handle toggle read in that case
return c.Torrent.Identifier()
}