nitter/src/types.nim

174 lines
3.9 KiB
Nim
Raw Normal View History

2019-08-11 20:26:37 +01:00
import times, sequtils, options
2019-06-20 19:04:18 +01:00
import norm/sqlite
2019-06-20 15:16:20 +01:00
2019-06-20 19:04:18 +01:00
export sqlite, options
2019-08-06 18:02:38 +01:00
type
VideoType* = enum
vmap, m3u8, mp4
2019-06-20 19:04:18 +01:00
db("cache.db", "", "", ""):
type
Profile* = object
username*: string
fullname*: string
location*: string
website*: string
2019-06-24 01:09:32 +01:00
bio*: string
2019-06-20 19:04:18 +01:00
userpic*: string
banner*: string
following*: string
followers*: string
tweets*: string
likes*: string
2019-08-11 22:24:02 +01:00
media*: string
2019-08-13 20:25:29 +01:00
verified* {.dbType: "STRING", parseIt: parseBool(it.s), formatIt: $it.}: bool
protected* {.dbType: "STRING", parseIt: parseBool(it.s), formatIt: $it.}: bool
joinDate* {.
2019-08-13 18:44:29 +01:00
dbType: "INTEGER"
parseIt: it.i.fromUnix()
formatIt: it.toUnix()
.}: Time
2019-06-20 19:04:18 +01:00
updated* {.
2019-08-13 18:44:29 +01:00
dbType: "INTEGER"
parseIt: it.i.fromUnix()
2019-06-20 19:04:18 +01:00
formatIt: getTime().toUnix()
.}: Time
2019-06-20 15:16:20 +01:00
2019-08-06 18:02:38 +01:00
Video* = object
videoId*: string
contentId*: string
durationMs*: int
url*: string
thumb*: string
views*: string
playbackType* {.
dbType: "STRING",
parseIt: parseEnum[VideoType](it.s),
formatIt: $it,
.}: VideoType
2019-08-13 20:25:29 +01:00
available* {.dbType: "STRING", parseIt: parseBool(it.s) formatIt: $it.}: bool
2019-08-06 18:02:38 +01:00
2019-08-13 18:44:29 +01:00
Prefs* = object
2019-08-13 20:25:29 +01:00
videoPlayback* {.dbType: "STRING", parseIt: parseBool(it.s), formatIt: $it.}: bool
autoplayGifs* {.dbType: "STRING", parseIt: parseBool(it.s), formatIt: $it.}: bool
hideTweetStats* {.dbType: "STRING", parseIt: parseBool(it.s), formatIt: $it.}: bool
hideBanner* {.dbType: "STRING", parseIt: parseBool(it.s), formatIt: $it.}: bool
stickyProfile* {.dbType: "STRING", parseIt: parseBool(it.s), formatIt: $it.}: bool
2019-08-13 18:44:29 +01:00
2019-06-20 19:04:18 +01:00
type
2019-07-11 18:22:23 +01:00
QueryKind* = enum
2019-08-06 16:41:06 +01:00
replies, media, multi, custom = "search"
Query* = object
2019-07-11 18:22:23 +01:00
kind*: QueryKind
2019-07-04 10:55:19 +01:00
filters*: seq[string]
includes*: seq[string]
excludes*: seq[string]
2019-08-06 16:41:06 +01:00
fromUser*: seq[string]
2019-07-04 10:55:19 +01:00
sep*: string
2019-06-24 04:14:14 +01:00
Gif* = object
url*: string
thumb*: string
2019-07-04 03:18:32 +01:00
GalleryPhoto* = object
url*: string
tweetId*: string
color*: string
2019-06-29 13:11:23 +01:00
Poll* = object
options*: seq[string]
values*: seq[int]
votes*: string
status*: string
leader*: int
2019-07-11 18:22:23 +01:00
CardKind* = enum
2019-07-15 15:03:01 +01:00
summary = "summary"
summaryLarge = "summary_large_image"
promoWebsite = "promo_website"
promoVideo = "promo_video_website"
player = "player"
liveEvent = "live_event"
2019-07-11 18:22:23 +01:00
Card* = object
kind*: CardKind
id*: string
query*: string
url*: string
title*: string
dest*: string
text*: string
2019-07-15 15:03:01 +01:00
image*: Option[string]
video*: Option[Video]
2019-07-11 18:22:23 +01:00
2019-06-24 07:07:36 +01:00
Quote* = object
2019-06-24 04:14:14 +01:00
id*: string
profile*: Profile
text*: string
reply*: seq[string]
hasThread*: bool
2019-06-25 01:58:33 +01:00
sensitive*: bool
2019-07-04 03:38:23 +01:00
available*: bool
thumb*: string
badge*: string
2019-06-24 04:14:14 +01:00
2019-07-01 22:22:00 +01:00
Retweet* = object
by*: string
id*: string
2019-07-01 22:48:25 +01:00
TweetStats* = object
replies*: string
retweets*: string
likes*: string
2019-06-24 04:14:14 +01:00
Tweet* = ref object
2019-06-20 15:16:20 +01:00
id*: string
threadId*: string
2019-06-20 15:16:20 +01:00
profile*: Profile
text*: string
time*: Time
shortTime*: string
reply*: seq[string]
2019-06-20 15:16:20 +01:00
pinned*: bool
available*: bool
hasThread*: bool
2019-07-01 22:48:25 +01:00
stats*: TweetStats
2019-07-01 22:22:00 +01:00
retweet*: Option[Retweet]
2019-06-24 04:14:14 +01:00
quote*: Option[Quote]
2019-07-11 18:22:23 +01:00
card*: Option[Card]
2019-06-24 04:14:14 +01:00
gif*: Option[Gif]
video*: Option[Video]
photos*: seq[string]
2019-06-29 13:11:23 +01:00
poll*: Option[Poll]
2019-06-20 15:16:20 +01:00
Thread* = ref object
2019-07-01 02:13:12 +01:00
tweets*: seq[Tweet]
more*: int
2019-06-20 15:16:20 +01:00
2019-06-24 04:14:14 +01:00
Conversation* = ref object
2019-06-20 15:16:20 +01:00
tweet*: Tweet
2019-07-01 02:13:12 +01:00
before*: Thread
after*: Thread
replies*: seq[Thread]
2019-06-20 15:16:20 +01:00
Timeline* = ref object
2019-07-01 02:13:12 +01:00
tweets*: seq[Tweet]
minId*: string
maxId*: string
hasMore*: bool
beginning*: bool
query*: Option[Query]
2019-07-31 01:15:43 +01:00
Config* = ref object
address*: string
port*: int
title*: string
staticDir*: string
cacheDir*: string
profileCacheTime*: int
2019-07-01 02:13:12 +01:00
proc contains*(thread: Thread; tweet: Tweet): bool =
thread.tweets.anyIt(it.id == tweet.id)