2646bc2db8
Showing how we can remove services, preventing cyclic imports and lessing the number of imports. Now db is in models. Db and models are highly tightened, according to go standards, you should put them in the same package. In models, there are folders separating the different methods used to modify the models. For example, if you want to create a user, you have to use /models (for the user struct) and /models/user (for creating a user. However, if you want to delete a torrent, you just have to import /models and do torrent.Delete(definitely bool). By the way packages in models are the plural name of a model. For example, you have torrent.go for a torrent model and its package torrents for db stuff related functions (Find, Create, Some helpers)
41 lignes
973 o
Go
41 lignes
973 o
Go
package models
|
|
|
|
import (
|
|
"html/template"
|
|
"strings"
|
|
|
|
"github.com/NyaaPantsu/nyaa/config"
|
|
)
|
|
|
|
// Activity model
|
|
type Activity struct {
|
|
ID uint
|
|
Content string
|
|
Identifier string
|
|
Filter string
|
|
UserID uint
|
|
User *User
|
|
}
|
|
|
|
// TemplateTfunc : Used to prevent cyclic import
|
|
type TemplateTfunc func(string, ...interface{}) template.HTML
|
|
|
|
// NewActivity : Create a new activity log
|
|
func NewActivity(identifier string, filter string, c ...string) Activity {
|
|
return Activity{Identifier: identifier, Content: strings.Join(c, ","), Filter: filter}
|
|
}
|
|
|
|
// TableName : Return the name of activity table
|
|
func (a *Activity) TableName() string {
|
|
return config.Conf.Models.ActivityTableName
|
|
}
|
|
|
|
// ToLocale : Convert list of parameters to message in local language
|
|
func (a *Activity) ToLocale(T TemplateTfunc) template.HTML {
|
|
c := strings.Split(a.Content, ",")
|
|
d := make([]interface{}, len(c)-1)
|
|
for i, s := range c[1:] {
|
|
d[i] = s
|
|
}
|
|
return T(c[0], d...)
|
|
}
|