2022-07-08 11:39:14 -05:00
# -*- coding: utf-8 -*-
2022-07-29 12:11:03 -05:00
""" Scanning code for autocompletion feature on TWBlue. This module can retrieve user objects from the selected Twitter account automatically. """
2022-07-08 11:39:14 -05:00
import time
2022-07-29 12:11:03 -05:00
import wx
2022-07-08 11:39:14 -05:00
import widgetUtils
import output
from tweepy . cursor import Cursor
from tweepy . errors import TweepyException
from pubsub import pub
2022-07-29 12:11:03 -05:00
from mysc . thread_utils import call_threaded
2022-07-08 11:39:14 -05:00
from . import wx_scan
from . import manage
from . import storage
class autocompletionScan ( object ) :
def __init__ ( self , config , buffer , window ) :
2022-07-29 12:11:03 -05:00
""" Class constructor. This class will take care of scanning the selected Twitter account to populate the database with users automatically upon request.
: param config : Config for the session that will be scanned in search for users .
: type config : dict
: param buffer : home buffer for the focused session .
: type buffer : controller . buffers . twitter . base . baseBuffer
: param window : Main Window of TWBlue .
: type window : wx . Frame
"""
2022-07-08 11:39:14 -05:00
super ( autocompletionScan , self ) . __init__ ( )
self . config = config
self . buffer = buffer
self . window = window
self . dialog = wx_scan . autocompletionScanDialog ( )
self . dialog . set ( " friends " , self . config [ " mysc " ] [ " save_friends_in_autocompletion_db " ] )
self . dialog . set ( " followers " , self . config [ " mysc " ] [ " save_followers_in_autocompletion_db " ] )
if self . dialog . get_response ( ) == widgetUtils . OK :
confirmation = wx_scan . confirm ( )
if confirmation == True :
2022-07-29 12:11:03 -05:00
self . progress_dialog = wx_scan . get_progress_dialog ( parent = self . dialog )
# connect method to update progress dialog
pub . subscribe ( self . on_update_progress , " on-update-progress " )
scanner = call_threaded ( self . scan )
2022-07-08 11:39:14 -05:00
def on_update_progress ( self , percent ) :
if percent > 100 :
percent = 100
2022-07-29 12:11:03 -05:00
wx . CallAfter ( self . progress_dialog . Update , percent )
2022-07-08 11:39:14 -05:00
def scan ( self ) :
""" Attempts to add all users selected by current user to the autocomplete database. """
ids = [ ]
self . config [ " mysc " ] [ " save_friends_in_autocompletion_db " ] = self . dialog . get ( " friends " )
self . config [ " mysc " ] [ " save_followers_in_autocompletion_db " ] = self . dialog . get ( " followers " )
output . speak ( _ ( " Updating database... You can close this window now. A message will tell you when the process finishes. " ) )
database = storage . storage ( self . buffer . session . session_id )
percent = 0
# Retrieve ids of all following users
if self . dialog . get ( " friends " ) == True :
for i in Cursor ( self . buffer . session . twitter . get_friend_ids , count = 5000 ) . items ( ) :
if str ( i ) not in ids :
ids . append ( str ( i ) )
# same step, but for followers.
if self . dialog . get ( " followers " ) == True :
2022-07-29 13:30:43 -05:00
try :
for i in Cursor ( self . buffer . session . twitter . get_follower_ids , count = 5000 ) . items ( ) :
if str ( i ) not in ids :
ids . append ( str ( i ) )
except TweepyException :
wx . CallAfter ( wx_scan . show_error )
self . done ( )
2022-07-08 11:39:14 -05:00
# As next step requires batches of 100s users, let's split our user Ids so we won't break the param rules.
split_users = [ ids [ i : i + 100 ] for i in range ( 0 , len ( ids ) , 100 ) ]
# store returned users in this list.
users = [ ]
for z in split_users :
if len ( z ) == 0 :
continue
2022-07-29 13:30:43 -05:00
try :
results = selff . buffer . session . twitter . lookup_users ( user_id = z )
except TweepyException :
wx . CallAfter ( wx_scan . show_error )
self . done ( )
2022-07-08 11:39:14 -05:00
users . extend ( results )
time . sleep ( 1 )
2022-07-29 12:11:03 -05:00
percent = percent + ( 100 / len ( split_users ) )
2022-07-08 11:39:14 -05:00
pub . sendMessage ( " on-update-progress " , percent = percent )
for user in users :
database . set_user ( user . screen_name , user . name , 1 )
2022-07-29 13:30:43 -05:00
self . done ( )
def done ( self ) :
2022-07-29 12:11:03 -05:00
wx . CallAfter ( self . progress_dialog . Destroy )
wx . CallAfter ( self . dialog . Destroy )
pub . unsubscribe ( self . on_update_progress , " on-update-progress " )
2022-07-08 11:39:14 -05:00
def execute_at_startup ( window , buffer , config ) :
database = storage . storage ( buffer . session . session_id )
if config [ " mysc " ] [ " save_followers_in_autocompletion_db " ] == True and config [ " other_buffers " ] [ " show_followers " ] == True :
buffer = window . search_buffer ( " followers " , config [ " twitter " ] [ " user_name " ] )
for i in buffer . session . db [ buffer . name ] :
database . set_user ( i . screen_name , i . name , 1 )
else :
database . remove_by_buffer ( 1 )
if config [ " mysc " ] [ " save_friends_in_autocompletion_db " ] == True and config [ " other_buffers " ] [ " show_friends " ] == True :
buffer = window . search_buffer ( " friends " , config [ " twitter " ] [ " user_name " ] )
for i in buffer . session . db [ buffer . name ] :
database . set_user ( i . screen_name , i . name , 2 )
else :
2022-07-29 12:11:03 -05:00
database . remove_by_buffer ( 2 )