nitter/src/types.nim

83 lines
1.6 KiB
Nim
Raw Normal View History

2019-06-20 18:04:18 +00:00
import times, sequtils, strutils, options
import norm/sqlite
2019-06-20 14:16:20 +00:00
2019-06-20 18:04:18 +00:00
export sqlite, options
db("cache.db", "", "", ""):
type
Profile* = object
username*: string
fullname*: string
2019-06-24 00:09:32 +00:00
bio*: string
2019-06-20 18:04:18 +00: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 14:16:20 +00:00
2019-06-20 18:04:18 +00:00
type
2019-06-24 03:14:14 +00:00
Video* = object
id*: string
url*: string
thumb*: string
length*: int
views*: string
available*: bool
Gif* = object
url*: string
thumb*: string
2019-06-24 06:07:36 +00:00
Quote* = object
2019-06-24 03:14:14 +00:00
id*: string
profile*: Profile
link*: string
text*: string
2019-06-25 00:58:33 +00:00
sensitive*: bool
2019-06-24 06:07:36 +00:00
thumb*: Option[string]
badge*: Option[string]
2019-06-24 03:14:14 +00:00
Tweet* = ref object
2019-06-20 14:16:20 +00:00
id*: string
profile*: Profile
link*: string
text*: string
time*: Time
shortTime*: string
replies*: string
retweets*: string
likes*: string
pinned*: bool
2019-06-24 03:14:14 +00:00
quote*: Option[Quote]
2019-06-20 18:04:18 +00:00
retweetBy*: Option[string]
retweetId*: Option[string]
2019-06-24 03:14:14 +00:00
gif*: Option[Gif]
video*: Option[Video]
photos*: seq[string]
2019-06-20 14:16:20 +00:00
Tweets* = seq[Tweet]
2019-06-24 03:14:14 +00:00
Conversation* = ref object
2019-06-20 14:16:20 +00:00
tweet*: Tweet
before*: Tweets
after*: Tweets
replies*: seq[Tweets]
proc contains*(thread: Tweets; tweet: Tweet): bool =
thread.anyIt(it.id == tweet.id)