2019-08-11 19:26:37 +00:00
|
|
|
import times, sequtils, options
|
2019-06-20 18:04:18 +00:00
|
|
|
import norm/sqlite
|
2019-06-20 14:16:20 +00:00
|
|
|
|
2019-09-08 11:01:20 +00:00
|
|
|
import prefs_impl
|
|
|
|
|
2019-06-20 18:04:18 +00:00
|
|
|
export sqlite, options
|
|
|
|
|
2019-08-06 17:02:38 +00:00
|
|
|
type
|
|
|
|
VideoType* = enum
|
|
|
|
vmap, m3u8, mp4
|
|
|
|
|
2019-09-08 10:22:52 +00:00
|
|
|
dbTypes:
|
2019-06-20 18:04:18 +00:00
|
|
|
type
|
|
|
|
Profile* = object
|
|
|
|
username*: string
|
|
|
|
fullname*: string
|
2019-08-11 19:26:55 +00:00
|
|
|
location*: string
|
|
|
|
website*: 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
|
2019-08-11 19:26:55 +00:00
|
|
|
likes*: string
|
2019-08-11 21:24:02 +00:00
|
|
|
media*: string
|
2019-08-15 20:44:59 +00:00
|
|
|
verified*: bool
|
|
|
|
protected*: bool
|
2019-08-11 19:26:55 +00:00
|
|
|
joinDate* {.
|
2019-08-13 17:44:29 +00:00
|
|
|
dbType: "INTEGER"
|
|
|
|
parseIt: it.i.fromUnix()
|
2019-08-15 20:44:59 +00:00
|
|
|
formatIt: dbValue(it.toUnix())
|
2019-08-11 19:26:55 +00:00
|
|
|
.}: Time
|
2019-06-20 18:04:18 +00:00
|
|
|
updated* {.
|
2019-08-13 17:44:29 +00:00
|
|
|
dbType: "INTEGER"
|
|
|
|
parseIt: it.i.fromUnix()
|
2019-08-15 20:44:59 +00:00
|
|
|
formatIt: dbValue(getTime().toUnix())
|
2019-06-20 18:04:18 +00:00
|
|
|
.}: Time
|
2019-06-20 14:16:20 +00:00
|
|
|
|
2019-08-06 17:02:38 +00:00
|
|
|
Video* = object
|
|
|
|
videoId*: string
|
|
|
|
contentId*: string
|
|
|
|
durationMs*: int
|
|
|
|
url*: string
|
|
|
|
thumb*: string
|
|
|
|
views*: string
|
2019-08-15 20:44:59 +00:00
|
|
|
available*: bool
|
2019-08-19 20:03:00 +00:00
|
|
|
reason*: string
|
2019-08-06 17:02:38 +00:00
|
|
|
playbackType* {.
|
2019-08-15 13:51:20 +00:00
|
|
|
dbType: "STRING"
|
|
|
|
parseIt: parseEnum[VideoType](it.s)
|
2019-08-15 20:44:59 +00:00
|
|
|
formatIt: dbValue($it)
|
2019-08-06 17:02:38 +00:00
|
|
|
.}: VideoType
|
|
|
|
|
2019-09-08 11:01:20 +00:00
|
|
|
genPrefsType()
|
2019-09-08 10:22:52 +00:00
|
|
|
dbFromTypes("cache.db", "", "", "", [Profile, Video])
|
|
|
|
|
2019-06-20 18:04:18 +00:00
|
|
|
type
|
2019-07-11 17:22:23 +00:00
|
|
|
QueryKind* = enum
|
2019-10-08 11:45:47 +00:00
|
|
|
posts, replies, media, users, custom, userList
|
2019-07-03 09:46:03 +00:00
|
|
|
|
|
|
|
Query* = object
|
2019-07-11 17:22:23 +00:00
|
|
|
kind*: QueryKind
|
2019-09-13 11:20:08 +00:00
|
|
|
text*: string
|
2019-07-04 09:55:19 +00:00
|
|
|
filters*: seq[string]
|
|
|
|
includes*: seq[string]
|
|
|
|
excludes*: seq[string]
|
2019-08-06 15:41:06 +00:00
|
|
|
fromUser*: seq[string]
|
2019-09-19 20:11:38 +00:00
|
|
|
since*: string
|
|
|
|
until*: string
|
2019-09-19 21:36:21 +00:00
|
|
|
near*: string
|
2019-07-04 09:55:19 +00:00
|
|
|
sep*: string
|
2019-07-03 09:46:03 +00:00
|
|
|
|
2019-08-23 00:15:25 +00:00
|
|
|
Result*[T] = ref object
|
|
|
|
content*: seq[T]
|
|
|
|
minId*: string
|
|
|
|
maxId*: string
|
|
|
|
hasMore*: bool
|
|
|
|
beginning*: bool
|
2019-09-19 00:23:22 +00:00
|
|
|
query*: Query
|
2019-08-23 00:15:25 +00:00
|
|
|
|
2019-06-24 03:14:14 +00:00
|
|
|
Gif* = object
|
|
|
|
url*: string
|
|
|
|
thumb*: string
|
|
|
|
|
2019-07-04 02:18:32 +00:00
|
|
|
GalleryPhoto* = object
|
|
|
|
url*: string
|
|
|
|
tweetId*: string
|
|
|
|
color*: string
|
|
|
|
|
2019-06-29 12:11:23 +00:00
|
|
|
Poll* = object
|
|
|
|
options*: seq[string]
|
|
|
|
values*: seq[int]
|
|
|
|
votes*: string
|
|
|
|
status*: string
|
|
|
|
leader*: int
|
|
|
|
|
2019-07-11 17:22:23 +00:00
|
|
|
CardKind* = enum
|
2019-07-15 14:03:01 +00:00
|
|
|
summary = "summary"
|
|
|
|
summaryLarge = "summary_large_image"
|
|
|
|
promoWebsite = "promo_website"
|
|
|
|
promoVideo = "promo_video_website"
|
|
|
|
player = "player"
|
|
|
|
liveEvent = "live_event"
|
2019-07-11 17:22:23 +00:00
|
|
|
|
|
|
|
Card* = object
|
|
|
|
kind*: CardKind
|
|
|
|
id*: string
|
|
|
|
query*: string
|
|
|
|
url*: string
|
|
|
|
title*: string
|
|
|
|
dest*: string
|
|
|
|
text*: string
|
2019-07-15 14:03:01 +00:00
|
|
|
image*: Option[string]
|
|
|
|
video*: Option[Video]
|
2019-07-11 17:22:23 +00:00
|
|
|
|
2019-06-24 06:07:36 +00:00
|
|
|
Quote* = object
|
2019-06-24 03:14:14 +00:00
|
|
|
id*: string
|
|
|
|
profile*: Profile
|
|
|
|
text*: string
|
2019-07-01 22:52:50 +00:00
|
|
|
reply*: seq[string]
|
|
|
|
hasThread*: bool
|
2019-06-25 00:58:33 +00:00
|
|
|
sensitive*: bool
|
2019-07-04 02:38:23 +00:00
|
|
|
available*: bool
|
2019-09-08 12:34:26 +00:00
|
|
|
tombstone*: string
|
2019-07-01 22:52:50 +00:00
|
|
|
thumb*: string
|
|
|
|
badge*: string
|
2019-06-24 03:14:14 +00:00
|
|
|
|
2019-07-01 21:22:00 +00:00
|
|
|
Retweet* = object
|
|
|
|
by*: string
|
|
|
|
id*: string
|
|
|
|
|
2019-07-01 21:48:25 +00:00
|
|
|
TweetStats* = object
|
|
|
|
replies*: string
|
|
|
|
retweets*: string
|
|
|
|
likes*: string
|
|
|
|
|
2019-06-24 03:14:14 +00:00
|
|
|
Tweet* = ref object
|
2019-06-20 14:16:20 +00:00
|
|
|
id*: string
|
2019-07-04 12:54:15 +00:00
|
|
|
threadId*: string
|
2019-06-20 14:16:20 +00:00
|
|
|
profile*: Profile
|
|
|
|
text*: string
|
|
|
|
time*: Time
|
|
|
|
shortTime*: string
|
2019-07-01 22:52:50 +00:00
|
|
|
reply*: seq[string]
|
2019-06-20 14:16:20 +00:00
|
|
|
pinned*: bool
|
2019-07-01 22:52:50 +00:00
|
|
|
hasThread*: bool
|
2019-09-08 12:34:26 +00:00
|
|
|
available*: bool
|
|
|
|
tombstone*: string
|
2019-07-01 21:48:25 +00:00
|
|
|
stats*: TweetStats
|
2019-07-01 21:22:00 +00:00
|
|
|
retweet*: Option[Retweet]
|
2019-06-24 03:14:14 +00:00
|
|
|
quote*: Option[Quote]
|
2019-07-11 17:22:23 +00:00
|
|
|
card*: Option[Card]
|
2019-06-24 03:14:14 +00:00
|
|
|
gif*: Option[Gif]
|
|
|
|
video*: Option[Video]
|
|
|
|
photos*: seq[string]
|
2019-06-29 12:11:23 +00:00
|
|
|
poll*: Option[Poll]
|
2019-06-20 14:16:20 +00:00
|
|
|
|
2019-07-03 05:18:19 +00:00
|
|
|
Thread* = ref object
|
2019-08-23 00:15:25 +00:00
|
|
|
content*: seq[Tweet]
|
2019-07-01 01:13:12 +00:00
|
|
|
more*: int
|
2019-06-20 14:16:20 +00:00
|
|
|
|
2019-06-24 03:14:14 +00:00
|
|
|
Conversation* = ref object
|
2019-06-20 14:16:20 +00:00
|
|
|
tweet*: Tweet
|
2019-07-01 01:13:12 +00:00
|
|
|
before*: Thread
|
|
|
|
after*: Thread
|
2019-09-24 13:39:04 +00:00
|
|
|
replies*: Result[Thread]
|
2019-06-20 14:16:20 +00:00
|
|
|
|
2019-08-23 00:15:25 +00:00
|
|
|
Timeline* = Result[Tweet]
|
2019-06-25 05:36:36 +00:00
|
|
|
|
2019-07-31 00:15:43 +00:00
|
|
|
Config* = ref object
|
|
|
|
address*: string
|
|
|
|
port*: int
|
2019-08-19 01:02:34 +00:00
|
|
|
useHttps*: bool
|
2019-07-31 00:15:43 +00:00
|
|
|
title*: string
|
|
|
|
staticDir*: string
|
|
|
|
cacheDir*: string
|
|
|
|
profileCacheTime*: int
|
|
|
|
|
2019-07-01 01:13:12 +00:00
|
|
|
proc contains*(thread: Thread; tweet: Tweet): bool =
|
2019-08-23 00:15:25 +00:00
|
|
|
thread.content.anyIt(it.id == tweet.id)
|