-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheck_website.py
57 lines (41 loc) · 1.59 KB
/
check_website.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
import requests
import click
import time
from slack import WebClient
import settings
def send_message(to, text, icon_emoji=':alarm_clock:', username='@CheckWeb'):
sc = WebClient(token=settings.TOKEN)
sc.chat_postMessage(
channel=to, # or '@to_user'
text=text,
icon_emoji=icon_emoji,
username=username # username is the "sender" name
)
@click.command()
@click.argument('url')
@click.argument('monitoring_name')
@click.argument('to')
@click.option('--seconds', default=5, help='Seconds to wait between each call.')
def main(url, monitoring_name, to, seconds):
headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) '
'AppleWebKit/537.36 (KHTML, like Gecko) '
'Chrome/39.0.2171.95 Safari/537.36'
}
username = f'{monitoring_name}@CheckWeb'
text = f'Captain, I started monitoring {url} with the name `{monitoring_name}`'
send_message(to, text, username=username)
response = requests.get(url, headers=headers)
last_response_text = response.text
while True:
time.sleep(seconds)
response = requests.get(url, headers=headers)
if last_response_text != response.text:
last_response_text == response.text
text = f"While on guard, I found that `{monitoring_name}` changed "\
f"@ {url}, captain!"
current_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print(current_time, ':', text)
send_message(to, text, username=username)
if __name__ == '__main__':
main()