2018-11-04 23:02:26 +00:00
#!/usr/bin/env python3
#Curious Greg - Curious Cat to Mastodon crossposter
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
2018-11-13 02:49:23 +00:00
import json , time
2018-11-04 23:02:26 +00:00
from mastodon import Mastodon
2018-11-13 02:49:23 +00:00
import requests
import mysql . connector
2018-11-04 23:02:26 +00:00
cfg = json . load ( open ( ' meta.json ' ) )
2018-11-13 03:22:30 +00:00
db = mysql . connector . connect ( user = cfg [ ' dbuser ' ] , password = cfg [ ' dbpass ' ] , database = cfg [ ' dbname ' ] )
c = db . cursor ( )
dc = db . cursor ( dictionary = True )
dc . execute ( " SELECT * FROM data " )
for row in dc . fetchall ( ) :
2018-11-13 10:58:07 +00:00
print ( row [ ' cc ' ] )
2018-11-13 11:52:19 +00:00
settings = json . loads ( row [ ' settings ' ] )
2018-11-13 10:12:19 +00:00
t = int ( time . time ( ) )
next_check = row [ ' last_check ' ] + row [ ' time_between_checks ' ] * 60
2018-11-13 10:58:07 +00:00
if next_check < = t :
2018-11-13 10:12:19 +00:00
row [ ' time_between_checks ' ] = cfg [ ' min_time_between_checks ' ]
#time to check
if row [ ' cc ' ] != " None " and row [ ' cc ' ] != None :
r = requests . get ( " https://curiouscat.me/api/v2/profile?username= {} &count=100&min_timestamp= {} " . format ( row [ ' cc ' ] , row [ ' latest_post ' ] ) )
j = r . json ( )
2018-11-13 11:52:19 +00:00
if len ( j [ ' posts ' ] ) > 0 and not ( len ( j [ ' posts ' ] ) == 1 and int ( j [ ' posts ' ] [ 0 ] [ ' timestamp ' ] ) == int ( row [ ' latest_post ' ] ) ) :
2018-11-13 10:12:19 +00:00
#they've made some new posts, log in to masto
client = Mastodon ( client_id = row [ ' client_id ' ] , client_secret = row [ ' client_secret ' ] , access_token = row [ ' secret ' ] , api_base_url = row [ ' instance ' ] )
for post in j [ ' posts ' ] :
if post [ ' senderData ' ] [ ' id ' ] == False :
2018-11-13 12:03:57 +00:00
sender = " (anonymous) "
2018-11-13 10:12:19 +00:00
else :
sender = post [ ' senderData ' ] [ ' username ' ]
2018-11-13 11:52:19 +00:00
if int ( post [ ' timestamp ' ] ) == int ( row [ ' latest_post ' ] ) :
#this is the one we've already seen
continue
2018-11-13 12:03:57 +00:00
toot = " Curious cat user {} asks: {} \n My answer: {} \n View online at https://curiouscat.me/ {} /post/ {} " . format ( sender , post [ ' comment ' ] , post [ ' reply ' ] , row [ ' cc ' ] , post [ ' id ' ] ) #TODO: what if this is over 500 characters?
2018-11-13 11:52:19 +00:00
if settings [ ' cw ' ] :
client . status_post ( toot , spoiler_text = " Curious Cat post " )
else :
client . status_post ( toot )
2018-11-13 10:58:07 +00:00
c . execute ( " UPDATE data SET last_check = %s , time_between_checks = %s , latest_post = %s " , ( t , cfg [ ' min_time_between_checks ' ] , j [ ' posts ' ] [ 0 ] [ ' timestamp ' ] ) )
else :
#we checked, and they haven't made a post
tbc = int ( row [ ' time_between_checks ' ] ) + 1
if tbc > int ( cfg [ ' max_time_between_checks ' ] ) :
tbc = cfg [ ' max_time_between_checks ' ]
c . execute ( " UPDATE data SET last_check = %s , time_between_checks = %s " , ( t , tbc ) )