/usr/share/sugar/activities/IRC.activity/ircactivity.py is in sugar-irc-activity 8-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | # Copyright (C) 2007, Eduardo Silva <edsiper@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
import os
import logging
from gettext import gettext as _
import gtk
import dbus
import simplejson
from sugar.activity import activity
from sugar import env
import purk
import purk.conf
import purk.windows
class IRCActivity(activity.Activity):
def __init__(self, handle):
activity.Activity.__init__(self, handle)
logging.debug('Starting the IRC Activity')
self.set_title(_('IRC Activity'))
self.add_events(gtk.gdk.VISIBILITY_NOTIFY_MASK)
self.connect('visibility-notify-event',
self.__visibility_notify_event_cb)
self.is_visible = False
self.client = purk.Client()
if handle.object_id is None:
self.default_config()
self.client.show()
widget = self.client.get_widget()
# CANVAS
self.set_canvas(widget)
# TOOLBAR
toolbox = activity.ActivityToolbox(self)
# Remove the Share button, since this activity isn't shareable
toolbar = toolbox.get_activity_toolbar()
toolbar.remove(toolbar.share)
self.set_toolbox(toolbox)
self.show_all()
def __visibility_notify_event_cb(self, window, event):
self.is_visible = event.state != gtk.gdk.VISIBILITY_FULLY_OBSCURED
def default_config(self):
self.client.join_server('us.freenode.net')
self.client.add_channel('#sugar')
def read_file(self, file_path):
if self.metadata['mime_type'] != 'text/plain':
return
fd = open(file_path, 'r')
text = fd.read()
data = simplejson.loads(text)
fd.close()
self.client.run_command('NICK %s' % (data['nick']))
self.client.join_server(data['server'])
for chan in data['channels']:
self.client.add_channel(chan)
self.client.core.window.network.requested_joins = set()
for winid in data['scrollback'].keys():
if winid in data['channels']:
win = purk.windows.new(purk.windows.ChannelWindow,
self.client.core.window.network,
winid, self.client.core)
else:
win = purk.windows.new(purk.windows.QueryWindow,
self.client.core.window.network,
winid, self.client.core)
win.output.get_buffer().set_text(data['scrollback'][winid])
if winid == data['current-window']:
self.client.core.window.network.requested_joins = set([winid])
def write_file(self, file_path):
if not self.metadata['mime_type']:
self.metadata['mime_type'] = 'text/plain'
data = {}
data['nick'] = self.client.core.window.network.me
data['server'] = self.client.core.window.network.server
data['username'] = self.client.core.window.network.server
data['fullname'] = self.client.core.window.network.fullname
data['password'] = self.client.core.window.network.password
data['current-window'] = self.client.core.manager.get_active().id
data['channels'] = []
data['scrollback'] = {}
for i in range(self.client.core.manager.tabs.get_n_pages()):
win = self.client.core.manager.tabs.get_nth_page(i)
if win.id == "status":
continue
if win.is_channel():
data['channels'].append(win.id)
buf = win.output.get_buffer()
data['scrollback'][win.id] = buf.get_text(buf.get_start_iter(), buf.get_end_iter(), True)
fd = open(file_path, 'w')
text = simplejson.dumps(data)
fd.write(text)
fd.close()
|