model/torrent.go

43 lines
705 B
Go
Raw Normal View History

2022-08-03 19:58:31 +02:00
package model
import (
"fmt"
"time"
)
2022-08-03 19:58:31 +02:00
type Torrent struct {
2022-08-03 23:43:16 +02:00
ID TorrentID
Title string
Link string
Time time.Time
Seeders int
Leechers int
Downloads int
Trusted bool
2022-08-03 19:58:31 +02:00
}
type TorrentID string
func (t Torrent) String() string {
return fmt.Sprintf("id: %s | title: %s | seeders: %d | leechers: %d | downloads: %d | trusted: %t | upload time: %s",
t.ID,
t.Title,
t.Seeders,
t.Leechers,
t.Downloads,
t.Trusted,
t.Time,
)
}
2022-08-15 14:55:06 +02:00
func (t Torrent) StringWithoutTitle() string {
return fmt.Sprintf("id: %s | seeders: %d | leechers: %d | downloads: %d | trusted: %t | upload time: %s",
t.ID,
t.Seeders,
t.Leechers,
t.Downloads,
t.Trusted,
t.Time,
)
}