mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-26 20:53:13 -06:00
70 lines
2.5 KiB
Python
70 lines
2.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
import widgetUtils
|
|
import output
|
|
from wxUI.dialogs import lists
|
|
from twython import TwythonError
|
|
from twitter import compose, utils
|
|
|
|
class listsController(object):
|
|
def __init__(self, session, user=None):
|
|
super(listsController, self).__init__()
|
|
self.session = session
|
|
if user == None:
|
|
self.dialog = lists.listViewer()
|
|
self.dialog.populate_list(self.get_all_lists())
|
|
widgetUtils.connect_event(self.dialog.createBtn, widgetUtils.BUTTON_PRESSED, self.create_list)
|
|
widgetUtils.connect_event(self.dialog.editBtn, widgetUtils.BUTTON_PRESSED, self.edit_list)
|
|
self.dialog.get_response()
|
|
|
|
def get_all_lists(self):
|
|
return [compose.compose_list(item) for item in self.session.db["lists"]]
|
|
|
|
def create_list(self, *args, **kwargs):
|
|
dialog = lists.createListDialog()
|
|
if dialog.get_response() == widgetUtils.OK:
|
|
name = dialog.get("name")
|
|
description = dialog.get("description")
|
|
p = dialog.get("public")
|
|
if public == True:
|
|
mode = "public"
|
|
else:
|
|
mode = "private"
|
|
try:
|
|
new_list = self.session.twitter.twitter.create_list(name=name, description=description, mode=mode)
|
|
self.session.db["lists"].append(new_list)
|
|
self.dialog.lista.insert_item(False, *compose.compose_list(new_list))
|
|
except TwythonError as e:
|
|
output.speak("error %s: %s" % (e.status_code, e.msg))
|
|
dialog.destroy()
|
|
|
|
def edit_list(self, *args, **kwargs):
|
|
if self.dialog.lista.get_count() == 0: return
|
|
list = self.session.db["lists"][self.dialog.get_item()]
|
|
dialog = lists.editListDialog(list)
|
|
if dialog.get_response() == widgetUtils.OK:
|
|
name = dialog.get("name")
|
|
description = dialog.get("description")
|
|
p = dialog.get("public")
|
|
if p == True:
|
|
mode = "public"
|
|
else:
|
|
mode = "private"
|
|
try:
|
|
self.session.twitter.twitter.update_list(list_id=list["id"], name=name, description=description, mode=mode)
|
|
self.session.get_lists()
|
|
self.dialog.populate_list(self.get_all_lists(), True)
|
|
except TwythonError as e:
|
|
output.speak("error %s: %s" % (e.error_code, e.msg))
|
|
dialog.destroy()
|
|
|
|
def remove_list(self, *args, **kwargs):
|
|
if self.dialog.lista.get_count() == 0: return
|
|
list = self.session.db["lists"][self.dialog.get_item()]["id"]
|
|
if lists.remove_list() == widgetUtils.YES:
|
|
try:
|
|
self.session.twitter.twitter.delete_list(list_id=list)
|
|
self.session.db["lists"].pop(self.dialog.get_item())
|
|
self.dialog.lista.remove_item(self.dialog.get_item())
|
|
except TwythonError as e:
|
|
output.speak("error %s: %s" % (e.error_code, e.msg))
|