forked from NyaaPantsu/nyaa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dumps.go
36 lines (31 loc) · 820 Bytes
/
dumps.go
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
package models
import (
"html/template"
"time"
"github.com/NyaaPantsu/nyaa/utils/format"
)
// DatabaseDump model
type DatabaseDump struct {
Date time.Time
Filesize int64
Name string
TorrentLink string
}
// DatabaseDumpJSON : Json format of DatabaseDump model
type DatabaseDumpJSON struct {
Date string `json:"date"`
Filesize string `json:"filesize"`
Name string `json:"name"`
//Magnet template.URL `json:"magnet"`
TorrentLink template.URL `json:"torrent"`
}
// ToJSON : convert to JSON DatabaseDump model
func (dump *DatabaseDump) ToJSON() DatabaseDumpJSON {
json := DatabaseDumpJSON{
Date: dump.Date.Format(time.RFC3339),
Filesize: format.FileSize(dump.Filesize),
Name: dump.Name,
TorrentLink: template.URL(dump.TorrentLink),
}
return json
}