blob: 0ee0f84e57dcc49573687c6ee09de0a923f3a5e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
package models
import (
"database/sql"
"fmt"
"strconv"
"strings"
"time"
"github.com/lib/pq"
)
type DataSource int
const (
DataSourceACD DataSource = iota
DataSourceAniDB
DataSourceAnilist
)
type Trait struct {
Name string
Value string
OfficialValue string
}
type Gril struct {
ID int
KanjiName string
RomajiName string
OtherNames []string
Age sql.NullInt64
Birthday pq.NullTime
Tags []string
Traits []Trait
ForeignIDs map[DataSource]int
UpdatedAt time.Time
Lists []int
Series []Series
}
// Der kram hier sollte eigentlich auch eher wo anders hin als ins Model, oder?!
func (g *Gril) Slug() string {
if g.RomajiName == "" {
return strconv.Itoa(g.ID)
}
return fmt.Sprintf(
"%d/%s",
g.ID,
strings.Replace(g.RomajiName, " ", "", -1))
}
// Das hier sollte auch irgendwo anders hin.
func (g *Gril) ImagePath(useThumbnail bool) string {
if useThumbnail {
return fmt.Sprintf("http://img.grilist.moe/gril/thumb/%d.jpg", g.ID)
}
return fmt.Sprintf("http://img.grilist.moe/gril/full/%d.jpg", g.ID)
}
|