2015-01-27 17:09:28 -06:00
# -*- coding: utf-8 -*-
2022-07-08 11:39:14 -05:00
""" Management of users in the local database for autocompletion. """
import time
2015-01-27 17:09:28 -06:00
import widgetUtils
2022-07-08 11:39:14 -05:00
from tweepy . cursor import Cursor
2021-10-28 13:18:02 -05:00
from tweepy . errors import TweepyException
2015-01-27 17:09:28 -06:00
from wxUI import commonMessageDialogs
2022-07-29 12:08:05 -05:00
from . import storage , wx_manage
2015-01-27 17:09:28 -06:00
2022-07-29 17:37:28 -05:00
class autocompletionManage ( object ) :
2021-06-16 16:18:41 -05:00
def __init__ ( self , session ) :
2022-07-08 11:39:14 -05:00
""" class constructor. Manages everything related to user autocompletion.
: param session : Sessiom where the autocompletion management has been requested .
: type session : sessions . base . Session .
"""
2022-07-29 17:37:28 -05:00
super ( autocompletionManage , self ) . __init__ ( )
2021-06-16 16:18:41 -05:00
self . session = session
2022-07-29 12:08:05 -05:00
# Instantiate database so we can perform modifications on it.
2021-06-16 16:18:41 -05:00
self . database = storage . storage ( self . session . session_id )
2022-07-08 11:39:14 -05:00
def show_settings ( self ) :
2022-07-29 12:08:05 -05:00
""" display user management dialog and connect events associated to it. """
2022-07-08 11:39:14 -05:00
self . dialog = wx_manage . autocompletionManageDialog ( )
2021-06-16 16:18:41 -05:00
self . users = self . database . get_all_users ( )
self . dialog . put_users ( self . users )
widgetUtils . connect_event ( self . dialog . add , widgetUtils . BUTTON_PRESSED , self . add_user )
widgetUtils . connect_event ( self . dialog . remove , widgetUtils . BUTTON_PRESSED , self . remove_user )
self . dialog . get_response ( )
2015-01-27 17:09:28 -06:00
2021-06-16 16:18:41 -05:00
def update_list ( self ) :
2022-07-29 12:08:05 -05:00
""" update users list in management dialog. This function is normallhy used after we modify the database in any way, so we can reload all users in the autocompletion user management list. """
2021-06-16 16:18:41 -05:00
item = self . dialog . users . get_selected ( )
self . dialog . users . clear ( )
self . users = self . database . get_all_users ( )
self . dialog . put_users ( self . users )
self . dialog . users . select_item ( item )
2015-01-27 17:09:28 -06:00
2021-06-16 16:18:41 -05:00
def add_user ( self , * args , * * kwargs ) :
2022-07-29 12:08:05 -05:00
""" Add a new Twitter username to the autocompletion database. """
2021-06-16 16:18:41 -05:00
usr = self . dialog . get_user ( )
if usr == False :
return
2022-07-29 12:08:05 -05:00
# check if user exists.
# ToDo: in case we want to adapt this for other networks we'd need to refactor this check.
2021-06-16 16:18:41 -05:00
try :
2021-10-28 13:18:02 -05:00
data = self . session . twitter . get_user ( screen_name = usr )
except TweepyException as e :
log . exception ( " Exception raised when attempting to add an user to the autocomplete database manually. " )
2021-06-16 16:18:41 -05:00
self . dialog . show_invalid_user_error ( )
return
self . database . set_user ( data . screen_name , data . name , 0 )
self . update_list ( )
2015-01-27 17:09:28 -06:00
2022-07-29 12:08:05 -05:00
def remove_user ( self , * args , * * kwargs ) :
""" Remove focused user from the autocompletion database. """
2021-06-16 16:18:41 -05:00
if commonMessageDialogs . delete_user_from_db ( ) == widgetUtils . YES :
item = self . dialog . users . get_selected ( )
user = self . users [ item ]
self . database . remove_user ( user [ 0 ] )
self . update_list ( )