-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
202 lines (143 loc) · 5.17 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#! /usr/bin/env python3
# coding: utf-8
'''
TODO write tests and mock APIs
'''
import logging
logging.basicConfig(level=logging.INFO)
import time
import random
from datetime import timedelta
from pprint import pprint as pp
import tweepy
from raindropio import API
from raindropio import Raindrop
from raindropio import CollectionRef
from helpers import load_config
from helpers import tweet_image
from helpers import remove_url_get_params
from helpers import fetch_interval_since_last_tweet
from helpers import CREDENTIALS
ITEMS = []
def fetch_items():
'''
TODO using a RaindropFetcher and its method
TODO collection id as input argument - or credential ?
'''
raindrop_api = API(**CREDENTIALS['raindrop'])
collection_id = CollectionRef({ '$id': 14623292 })
items = []
page = 0
while (page_items:=Raindrop.search(api=raindrop_api, collection=collection_id, page=page)):
items.extend(page_items)
page += 1
raindrop_tag = load_config()['raindrop_tag']
items = [ i for i in items if raindrop_tag in i.tags ]
logging.info('Collected {} items from Raindrop'.format(len(items)))
return items
def choose_item(items):
'''
filtering against conditions, eg:
- checking against already tweeted
- raindrop tag == X
- randomly choosing
'''
choose_one = random.choice
try:
item = choose_one(items)
except IndexError:
logging.error('items is empty')
raise Exception ## TODO improve raised error clarity
return item
def transform_item(item):
'''
beautify, augment, structure published content
'''
tweet_format = load_config()['tweet_format']
tweet_format = tweet_format.encode('utf-8').decode('unicode_escape')
content = {
'title': item.title,
'url': remove_url_get_params(item.link),
'description': item.excerpt,
'tags': ' '.join([ '#{}'.format(t) for t in item.tags ]),
}
publishable = {
'string': tweet_format.format(**content),
'image_url': item.cover,
}
return publishable
def publish_item(item):
'''
TODO have a Tweet class (subclassed from Item) with transform and publish methods ? images are published differently than simple text updates
TODO very ugly try except cascade, refactor it
'''
default_image_url = load_config()['default_image_url']
authhandler_creds = {
'consumer_key': CREDENTIALS['twitter']['consumer_key'],
'consumer_secret': CREDENTIALS['twitter']['consumer_secret'],
}
access_token_creds = {
'key': CREDENTIALS['twitter']['access_token']['key'],
'secret': CREDENTIALS['twitter']['access_token']['secret'],
}
twitter_auth = tweepy.OAuthHandler(**authhandler_creds)
twitter_auth.set_access_token(**access_token_creds)
twitter_api = tweepy.API(twitter_auth,
wait_on_rate_limit=True,
wait_on_rate_limit_notify=True,
)
try:
twitter_api.verify_credentials()
logging.info('Authentication OK')
except:
pass
try:
tweet_image(api=twitter_api, url=item['image_url'], message=item['string'])
except Exception as error:
logging.error('Exception:', exc_info=True)
try:
tweet_image(api=twitter_api, url=default_image_url, message=item['string'])
except Exception as error:
logging.error('Exception:', exc_info=True)
try:
twitter_api.update_status(status=item['string'])
except tweepy.TweepError as error:
logging.error('Exception:', exc_info=True)
pass
logging.info('Tweeted:\n===\n{}\n==='.format(item['string']))
return
def bot():
'''
TODO might be cleaner not to fetch whole Raindrop library every 10 min & instead batch
TODO separate out the task from the scheduling
'''
global ITEMS
ITEMS = ITEMS if len(ITEMS) > 0 else fetch_items()
logging.debug('There are {} number of items left to publish'.format(len(ITEMS)))
item = choose_item(items=ITEMS)
publishable = transform_item(item=item)
publish_item(item=publishable)
ITEMS.remove(item)
logging.debug('Removed item {} from list of items to publish'.format(item.id))
return
def main():
'''
polling
'''
logging.info('Bot started')
polling_interval = 5
while True:
is_running = load_config()['running']
interval_since_last_tweet = fetch_interval_since_last_tweet()
minimum_tweeting_interval = load_config()['interval']
minimum_tweeting_interval = timedelta(minutes=minimum_tweeting_interval)
logging.info('Last tweet was {} minutes ago and we tweet only every {} minutes'.format(interval_since_last_tweet.seconds/60, minimum_tweeting_interval.seconds/60))
is_time_to_tweet_again = interval_since_last_tweet > minimum_tweeting_interval
logging.info(f'Is time to tweet again ? {is_time_to_tweet_again}')
if is_running and is_time_to_tweet_again:
bot()
logging.info(f'Sleeping for {polling_interval} minutes ...')
time.sleep(60*polling_interval)
return
if __name__ == '__main__':
main()