このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
Nitter-mod/src/types.nim

89 行
1.7 KiB
Nim
Raw 通常表示 履歴

2019-06-21 03:04:18 +09:00
import times, sequtils, strutils, options
import norm/sqlite
2019-06-20 23:16:20 +09:00
2019-06-21 03:04:18 +09:00
export sqlite, options
db("cache.db", "", "", ""):
type
Profile* = object
username*: string
fullname*: string
2019-06-24 09:09:32 +09:00
bio*: string
2019-06-21 03:04:18 +09:00
userpic*: string
banner*: string
following*: string
followers*: string
tweets*: string
verified* {.
dbType: "STRING",
parseIt: parseBool(it.s)
formatIt: $it
.}: bool
protected* {.
dbType: "STRING",
parseIt: parseBool(it.s)
formatIt: $it
.}: bool
updated* {.
dbType: "INTEGER",
parseIt: it.i.fromUnix(),
formatIt: getTime().toUnix()
.}: Time
2019-06-20 23:16:20 +09:00
2019-06-21 03:04:18 +09:00
type
2019-06-24 12:14:14 +09:00
Video* = object
id*: string
url*: string
thumb*: string
length*: int
views*: string
available*: bool
Gif* = object
url*: string
thumb*: string
2019-06-24 15:07:36 +09:00
Quote* = object
2019-06-24 12:14:14 +09:00
id*: string
profile*: Profile
link*: string
text*: string
2019-06-25 09:58:33 +09:00
sensitive*: bool
2019-06-24 15:07:36 +09:00
thumb*: Option[string]
badge*: Option[string]
2019-06-24 12:14:14 +09:00
Tweet* = ref object
2019-06-20 23:16:20 +09:00
id*: string
profile*: Profile
link*: string
text*: string
time*: Time
shortTime*: string
replies*: string
retweets*: string
likes*: string
pinned*: bool
2019-06-24 12:14:14 +09:00
quote*: Option[Quote]
2019-06-21 03:04:18 +09:00
retweetBy*: Option[string]
retweetId*: Option[string]
2019-06-24 12:14:14 +09:00
gif*: Option[Gif]
video*: Option[Video]
photos*: seq[string]
2019-06-20 23:16:20 +09:00
Tweets* = seq[Tweet]
2019-06-24 12:14:14 +09:00
Conversation* = ref object
2019-06-20 23:16:20 +09:00
tweet*: Tweet
before*: Tweets
after*: Tweets
replies*: seq[Tweets]
Timeline* = ref object
tweets*: Tweets
minId*: string
maxId*: string
hasMore*: bool
2019-06-20 23:16:20 +09:00
proc contains*(thread: Tweets; tweet: Tweet): bool =
thread.anyIt(it.id == tweet.id)