2007-10-28 16:56:05 +01:00
|
|
|
"""Base class for activities written in Python
|
2007-04-10 04:47:37 +02:00
|
|
|
|
2007-10-28 16:56:05 +01:00
|
|
|
This is currently the only definitive reference for what an
|
2007-04-10 04:47:37 +02:00
|
|
|
activity must do to participate in the Sugar desktop.
|
2007-10-28 16:56:05 +01:00
|
|
|
|
|
|
|
A Basic Activity
|
|
|
|
|
|
|
|
All activities must implement a class derived from 'Activity' in this class.
|
|
|
|
The convention is to call it ActivitynameActivity, but this is not required as
|
|
|
|
the activity.info file associated with your activity will tell the sugar-shell
|
|
|
|
which class to start.
|
|
|
|
|
|
|
|
For example the most minimal Activity:
|
|
|
|
|
|
|
|
|
|
|
|
from sugar.activity import activity
|
|
|
|
|
|
|
|
class ReadActivity(activity.Activity):
|
|
|
|
pass
|
|
|
|
|
|
|
|
To get a real, working activity, you will at least have to implement:
|
|
|
|
__init__(), read_file() and write_file()
|
|
|
|
|
|
|
|
Aditionally, you will probably need a at least a Toolbar so you can have some
|
|
|
|
interesting buttons for the user, like for example 'exit activity'
|
|
|
|
|
|
|
|
See the methods of the Activity class below for more information on what you
|
|
|
|
will need for a real activity.
|
2007-04-10 04:47:37 +02:00
|
|
|
"""
|
2007-06-24 14:43:48 +02:00
|
|
|
# Copyright (C) 2006-2007 Red Hat, Inc.
|
2006-10-15 01:08:44 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2007-06-04 19:35:05 +02:00
|
|
|
from gettext import gettext as _
|
2006-08-11 17:05:06 +02:00
|
|
|
import logging
|
2007-02-22 17:27:00 +01:00
|
|
|
import os
|
2007-05-10 11:01:32 +02:00
|
|
|
import time
|
2007-06-04 19:35:05 +02:00
|
|
|
import tempfile
|
2007-08-21 12:12:13 +02:00
|
|
|
from hashlib import sha1
|
2007-11-13 15:59:24 +01:00
|
|
|
import traceback
|
2006-08-09 18:29:33 +02:00
|
|
|
|
2007-04-27 22:07:38 +02:00
|
|
|
import gtk, gobject
|
2007-06-15 18:03:17 +02:00
|
|
|
import dbus
|
2007-08-21 12:12:13 +02:00
|
|
|
import json
|
2007-06-27 23:12:32 +02:00
|
|
|
|
|
|
|
from sugar import util
|
2007-04-09 20:40:56 +02:00
|
|
|
from sugar.presence import presenceservice
|
2007-02-21 20:15:39 +01:00
|
|
|
from sugar.activity.activityservice import ActivityService
|
2007-07-31 14:56:05 +02:00
|
|
|
from sugar.graphics import style
|
2007-02-27 15:05:44 +01:00
|
|
|
from sugar.graphics.window import Window
|
2007-04-27 10:51:19 +02:00
|
|
|
from sugar.graphics.toolbox import Toolbox
|
|
|
|
from sugar.graphics.toolbutton import ToolButton
|
2007-07-24 11:29:14 +02:00
|
|
|
from sugar.graphics.toolcombobox import ToolComboBox
|
2007-11-13 15:59:24 +01:00
|
|
|
from sugar.graphics.alert import Alert
|
|
|
|
from sugar.graphics.icon import Icon
|
2007-05-10 11:01:32 +02:00
|
|
|
from sugar.datastore import datastore
|
2007-06-01 21:21:30 +02:00
|
|
|
from sugar import wm
|
2007-05-10 11:01:32 +02:00
|
|
|
from sugar import profile
|
2007-10-15 15:39:07 +02:00
|
|
|
from sugar import _sugarbaseext
|
2007-11-04 17:00:48 +01:00
|
|
|
from sugar import _sugarext
|
2007-04-27 10:51:19 +02:00
|
|
|
|
2007-09-01 19:07:49 +02:00
|
|
|
SCOPE_PRIVATE = "private"
|
|
|
|
SCOPE_INVITE_ONLY = "invite" # shouldn't be shown in UI, it's implicit when you invite somebody
|
|
|
|
SCOPE_NEIGHBORHOOD = "public"
|
2007-07-24 11:29:14 +02:00
|
|
|
|
2007-08-28 23:07:57 +02:00
|
|
|
class ActivityToolbar(gtk.Toolbar):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""The Activity toolbar with the Journal entry title, sharing, Keep and Stop buttons
|
|
|
|
|
|
|
|
All activities should have this toolbar. It is easiest to add it to your
|
|
|
|
Activity by using the ActivityToolbox.
|
|
|
|
"""
|
2007-04-27 10:51:19 +02:00
|
|
|
def __init__(self, activity):
|
|
|
|
gtk.Toolbar.__init__(self)
|
|
|
|
|
|
|
|
self._activity = activity
|
2007-09-11 19:59:40 +02:00
|
|
|
self._updating_share = False
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
activity.connect('shared', self.__activity_shared_cb)
|
|
|
|
activity.connect('joined', self.__activity_shared_cb)
|
2007-08-16 17:32:29 +02:00
|
|
|
activity.connect('notify::max_participants',
|
2007-10-16 15:51:48 +02:00
|
|
|
self.__max_participants_changed_cb)
|
2007-04-27 10:51:19 +02:00
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
if activity.metadata:
|
2007-05-14 19:27:35 +02:00
|
|
|
self.title = gtk.Entry()
|
|
|
|
self.title.set_size_request(int(gtk.gdk.screen_width() / 6), -1)
|
2007-05-29 15:53:58 +02:00
|
|
|
self.title.set_text(activity.metadata['title'])
|
2007-10-16 15:51:48 +02:00
|
|
|
self.title.connect('changed', self.__title_changed_cb)
|
2007-05-14 19:27:35 +02:00
|
|
|
self._add_widget(self.title)
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
activity.metadata.connect('updated', self.__jobject_updated_cb)
|
2007-05-14 19:27:35 +02:00
|
|
|
|
|
|
|
separator = gtk.SeparatorToolItem()
|
|
|
|
separator.props.draw = False
|
|
|
|
separator.set_expand(True);
|
|
|
|
self.insert(separator, -1)
|
|
|
|
separator.show()
|
2007-04-27 22:07:38 +02:00
|
|
|
|
2007-08-28 23:07:57 +02:00
|
|
|
self.share = ToolComboBox(label_text=_('Share with:'))
|
2007-10-16 15:51:48 +02:00
|
|
|
self.share.combo.connect('changed', self.__share_changed_cb)
|
2007-10-21 00:27:54 +02:00
|
|
|
self.share.combo.append_item(SCOPE_PRIVATE, _('Private'), 'zoom-home')
|
2007-09-01 19:07:49 +02:00
|
|
|
self.share.combo.append_item(SCOPE_NEIGHBORHOOD, _('My Neighborhood'),
|
2007-10-21 00:27:54 +02:00
|
|
|
'zoom-neighborhood')
|
2007-07-24 11:29:14 +02:00
|
|
|
self.insert(self.share, -1)
|
|
|
|
self.share.show()
|
|
|
|
|
2007-08-16 20:43:05 +02:00
|
|
|
self._update_share()
|
|
|
|
|
2007-07-10 15:18:08 +02:00
|
|
|
self.keep = ToolButton('document-save')
|
|
|
|
self.keep.set_tooltip(_('Keep'))
|
2007-10-16 15:51:48 +02:00
|
|
|
self.keep.connect('clicked', self.__keep_clicked_cb)
|
2007-07-10 15:18:08 +02:00
|
|
|
self.insert(self.keep, -1)
|
|
|
|
self.keep.show()
|
2007-06-22 14:11:39 +02:00
|
|
|
|
2007-07-10 16:09:21 +02:00
|
|
|
self.stop = ToolButton('activity-stop')
|
2007-07-10 15:18:08 +02:00
|
|
|
self.stop.set_tooltip(_('Stop'))
|
2007-10-16 15:51:48 +02:00
|
|
|
self.stop.connect('clicked', self.__stop_clicked_cb)
|
2007-07-10 15:18:08 +02:00
|
|
|
self.insert(self.stop, -1)
|
|
|
|
self.stop.show()
|
2007-05-10 11:01:32 +02:00
|
|
|
|
2007-06-18 20:38:20 +02:00
|
|
|
self._update_title_sid = None
|
|
|
|
|
2007-07-24 11:29:14 +02:00
|
|
|
def _update_share(self):
|
2007-09-11 19:59:40 +02:00
|
|
|
self._updating_share = True
|
|
|
|
|
2007-08-16 20:43:05 +02:00
|
|
|
if self._activity.props.max_participants == 1:
|
|
|
|
self.share.hide()
|
|
|
|
|
|
|
|
if self._activity.get_shared():
|
2007-07-24 11:29:14 +02:00
|
|
|
self.share.set_sensitive(False)
|
2007-08-28 23:07:57 +02:00
|
|
|
self.share.combo.set_active(1)
|
2007-08-16 17:55:52 +02:00
|
|
|
else:
|
2007-07-24 11:29:14 +02:00
|
|
|
self.share.set_sensitive(True)
|
2007-08-28 23:07:57 +02:00
|
|
|
self.share.combo.set_active(0)
|
2007-09-11 19:59:40 +02:00
|
|
|
|
|
|
|
self._updating_share = False
|
2007-07-24 11:29:14 +02:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __share_changed_cb(self, combo):
|
2007-09-11 19:59:40 +02:00
|
|
|
if self._updating_share:
|
2007-08-28 23:07:57 +02:00
|
|
|
return
|
2007-09-11 19:59:40 +02:00
|
|
|
|
2007-08-28 23:07:57 +02:00
|
|
|
model = self.share.combo.get_model()
|
|
|
|
it = self.share.combo.get_active_iter()
|
|
|
|
(scope, ) = model.get(it, 0)
|
2007-09-01 19:07:49 +02:00
|
|
|
if scope == SCOPE_NEIGHBORHOOD:
|
2007-07-24 11:29:14 +02:00
|
|
|
self._activity.share()
|
2007-05-15 11:23:46 +02:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __keep_clicked_cb(self, button):
|
2007-08-31 15:43:38 +02:00
|
|
|
self._activity.copy()
|
2007-06-22 14:11:39 +02:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __stop_clicked_cb(self, button):
|
2007-10-23 15:19:17 +02:00
|
|
|
self._activity.take_screenshot()
|
2007-05-15 11:23:46 +02:00
|
|
|
self._activity.close()
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __jobject_updated_cb(self, jobject):
|
2007-05-10 11:01:32 +02:00
|
|
|
self.title.set_text(jobject['title'])
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __title_changed_cb(self, entry):
|
2007-06-18 20:38:20 +02:00
|
|
|
if not self._update_title_sid:
|
2007-10-16 15:51:48 +02:00
|
|
|
self._update_title_sid = gobject.timeout_add(1000, self.__update_title_cb)
|
2007-06-18 20:38:20 +02:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __update_title_cb(self):
|
2007-08-31 11:37:42 +02:00
|
|
|
title = self.title.get_text()
|
|
|
|
|
|
|
|
self._activity.metadata['title'] = title
|
2007-06-18 20:38:20 +02:00
|
|
|
self._activity.metadata['title_set_by_user'] = '1'
|
|
|
|
self._activity.save()
|
2007-08-31 11:37:42 +02:00
|
|
|
|
|
|
|
shared_activity = self._activity._shared_activity
|
|
|
|
if shared_activity:
|
|
|
|
shared_activity.props.name = title
|
|
|
|
|
2007-06-18 20:38:20 +02:00
|
|
|
self._update_title_sid = None
|
|
|
|
return False
|
2007-05-10 11:01:32 +02:00
|
|
|
|
|
|
|
def _add_widget(self, widget, expand=False):
|
|
|
|
tool_item = gtk.ToolItem()
|
|
|
|
tool_item.set_expand(expand)
|
|
|
|
|
|
|
|
tool_item.add(widget)
|
|
|
|
widget.show()
|
|
|
|
|
|
|
|
self.insert(tool_item, -1)
|
|
|
|
tool_item.show()
|
2007-04-27 22:07:38 +02:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __activity_shared_cb(self, activity):
|
2007-07-24 11:29:14 +02:00
|
|
|
self._update_share()
|
2007-04-27 10:51:19 +02:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __max_participants_changed_cb(self, activity, pspec):
|
2007-08-16 17:32:29 +02:00
|
|
|
self._update_share()
|
|
|
|
|
2007-04-30 18:59:55 +02:00
|
|
|
class EditToolbar(gtk.Toolbar):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Provides the standard edit toolbar for Activities.
|
|
|
|
|
|
|
|
Members:
|
|
|
|
undo -- the undo button
|
|
|
|
redo -- the redo button
|
|
|
|
copy -- the copy button
|
|
|
|
paste -- the paste button
|
|
|
|
separator -- A separator between undo/redo and copy/paste
|
|
|
|
|
|
|
|
This class only provides the 'edit' buttons in a standard layout, your activity
|
|
|
|
will need to either hide buttons which make no sense for your Activity, or you
|
|
|
|
need to connect the button events to your own callbacks:
|
|
|
|
|
|
|
|
## Example from Read.activity:
|
|
|
|
# Create the edit toolbar:
|
|
|
|
self._edit_toolbar = EditToolbar(self._view)
|
|
|
|
# Hide undo and redo, they're not needed
|
|
|
|
self._edit_toolbar.undo.props.visible = False
|
|
|
|
self._edit_toolbar.redo.props.visible = False
|
|
|
|
# Hide the separator too:
|
|
|
|
self._edit_toolbar.separator.props.visible = False
|
|
|
|
|
|
|
|
# As long as nothing is selected, copy needs to be insensitive:
|
|
|
|
self._edit_toolbar.copy.set_sensitive(False)
|
|
|
|
# When the user clicks the button, call _edit_toolbar_copy_cb()
|
|
|
|
self._edit_toolbar.copy.connect('clicked', self._edit_toolbar_copy_cb)
|
|
|
|
|
|
|
|
# Add the edit toolbar:
|
|
|
|
toolbox.add_toolbar(_('Edit'), self._edit_toolbar)
|
|
|
|
# And make it visible:
|
|
|
|
self._edit_toolbar.show()
|
|
|
|
"""
|
2007-04-30 18:59:55 +02:00
|
|
|
def __init__(self):
|
|
|
|
gtk.Toolbar.__init__(self)
|
|
|
|
|
|
|
|
self.undo = ToolButton('edit-undo')
|
2007-09-03 12:38:16 +02:00
|
|
|
self.undo.set_tooltip(_('Undo'))
|
2007-04-30 18:59:55 +02:00
|
|
|
self.insert(self.undo, -1)
|
|
|
|
self.undo.show()
|
|
|
|
|
|
|
|
self.redo = ToolButton('edit-redo')
|
2007-09-03 12:38:16 +02:00
|
|
|
self.redo.set_tooltip(_('Redo'))
|
2007-04-30 18:59:55 +02:00
|
|
|
self.insert(self.redo, -1)
|
|
|
|
self.redo.show()
|
|
|
|
|
2007-09-07 18:08:48 +02:00
|
|
|
self.separator = gtk.SeparatorToolItem()
|
|
|
|
self.separator.set_draw(True)
|
|
|
|
self.insert(self.separator, -1)
|
|
|
|
self.separator.show()
|
2007-04-30 18:59:55 +02:00
|
|
|
|
|
|
|
self.copy = ToolButton('edit-copy')
|
2007-09-03 12:38:16 +02:00
|
|
|
self.copy.set_tooltip(_('Copy'))
|
2007-04-30 18:59:55 +02:00
|
|
|
self.insert(self.copy, -1)
|
|
|
|
self.copy.show()
|
|
|
|
|
|
|
|
self.paste = ToolButton('edit-paste')
|
2007-09-21 11:37:46 +02:00
|
|
|
self.paste.set_tooltip(_('Paste'))
|
2007-04-30 18:59:55 +02:00
|
|
|
self.insert(self.paste, -1)
|
|
|
|
self.paste.show()
|
|
|
|
|
2007-04-27 10:51:19 +02:00
|
|
|
class ActivityToolbox(Toolbox):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Creates the Toolbox for the Activity
|
|
|
|
|
|
|
|
By default, the toolbox contains only the ActivityToolbar. After creating the
|
|
|
|
toolbox, you can add your activity specific toolbars, for example the
|
|
|
|
EditToolbar.
|
|
|
|
|
|
|
|
To add the ActivityToolbox to your Activity in MyActivity.__init__() do:
|
|
|
|
|
|
|
|
# Create the Toolbar with the ActivityToolbar:
|
|
|
|
toolbox = activity.ActivityToolbox(self)
|
|
|
|
... your code, inserting all other toolbars you need, like EditToolbar ...
|
|
|
|
|
|
|
|
# Add the toolbox to the activity frame:
|
|
|
|
self.set_toolbox(toolbox)
|
|
|
|
# And make it visible:
|
|
|
|
toolbox.show()
|
|
|
|
"""
|
2007-04-27 10:51:19 +02:00
|
|
|
def __init__(self, activity):
|
|
|
|
Toolbox.__init__(self)
|
|
|
|
|
2007-04-27 22:07:38 +02:00
|
|
|
self._activity_toolbar = ActivityToolbar(activity)
|
|
|
|
self.add_toolbar('Activity', self._activity_toolbar)
|
|
|
|
self._activity_toolbar.show()
|
|
|
|
|
|
|
|
def get_activity_toolbar(self):
|
|
|
|
return self._activity_toolbar
|
2006-08-09 15:53:10 +02:00
|
|
|
|
2007-02-27 15:05:44 +01:00
|
|
|
class Activity(Window, gtk.Container):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""This is the base Activity class that all other Activities derive from. This is where your activity starts.
|
|
|
|
|
|
|
|
To get a working Activity:
|
|
|
|
0. Derive your Activity from this class:
|
|
|
|
class MyActivity(activity.Activity):
|
|
|
|
...
|
|
|
|
|
|
|
|
1. implement an __init__() method for your Activity class.
|
|
|
|
|
|
|
|
Use your init method to create your own ActivityToolbar which will
|
|
|
|
contain some standard buttons:
|
|
|
|
toolbox = activity.ActivityToolbox(self)
|
|
|
|
|
|
|
|
Add extra Toolbars to your toolbox.
|
|
|
|
|
|
|
|
You should setup Activity sharing here too.
|
|
|
|
|
|
|
|
Finaly, your Activity may need some resources which you can claim
|
|
|
|
here too.
|
|
|
|
|
|
|
|
The __init__() method is also used to make the distinction between
|
|
|
|
being resumed from the Journal, or starting with a blank document.
|
|
|
|
|
|
|
|
2. Implement read_file() and write_file()
|
|
|
|
Most activities revolve around creating and storing Journal entries.
|
|
|
|
For example, Write: You create a document, it is saved to the Journal
|
|
|
|
and then later you resume working on the document.
|
|
|
|
|
|
|
|
read_file() and write_file() will be called by sugar to tell your
|
|
|
|
Activity that it should load or save the document the user is working
|
|
|
|
on.
|
|
|
|
|
|
|
|
3. Implement our Activity Toolbars.
|
|
|
|
The Toolbars are added to your Activity in step 1 (the toolbox), but
|
|
|
|
you need to implement them somewhere. Now is a good time.
|
|
|
|
|
|
|
|
There are a number of standard Toolbars. The most basic one, the one
|
|
|
|
your almost absolutely MUST have is the ActivityToolbar. Without
|
|
|
|
this, you're not really making a proper Sugar Activity (which may be
|
|
|
|
okay, but you should really stop and think about why not!) You do
|
|
|
|
this with the ActivityToolbox(self) call in step 1.
|
|
|
|
|
|
|
|
Usually, you will also need the standard EditToolbar. This is the one
|
|
|
|
which has the standard copy and paste buttons. You need to derive
|
|
|
|
your own EditToolbar class from sugar.EditToolbar:
|
|
|
|
class EditToolbar(activity.EditToolbar):
|
|
|
|
...
|
|
|
|
|
|
|
|
See EditToolbar for the methods you should implement in your class.
|
|
|
|
|
|
|
|
Finaly, your Activity will very likely need some activity specific
|
|
|
|
buttons and options you can create your own toolbars by deriving a
|
|
|
|
class from gtk.Toolbar:
|
|
|
|
class MySpecialToolbar(gtk.Toolbar):
|
|
|
|
...
|
|
|
|
|
|
|
|
4. Use your creativity. Make your Activity something special and share
|
|
|
|
it with your friends!
|
|
|
|
|
|
|
|
Read through the methods of the Activity class below, to learn more about
|
|
|
|
how to make an Activity work.
|
|
|
|
|
|
|
|
Hint: A good and simple Activity to learn from is the Read activity. To
|
|
|
|
create your own activity, you may want to copy it and use it as a template.
|
|
|
|
"""
|
2007-02-27 15:05:44 +01:00
|
|
|
__gtype_name__ = 'SugarActivity'
|
2007-04-27 22:07:38 +02:00
|
|
|
|
|
|
|
__gsignals__ = {
|
2007-05-03 05:25:15 +02:00
|
|
|
'shared': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE, ([])),
|
|
|
|
'joined': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE, ([]))
|
2007-04-27 22:07:38 +02:00
|
|
|
}
|
|
|
|
|
2007-05-16 21:30:49 +02:00
|
|
|
__gproperties__ = {
|
2007-08-16 17:55:52 +02:00
|
|
|
'active' : (bool, None, None, False,
|
|
|
|
gobject.PARAM_READWRITE),
|
|
|
|
'max-participants': (int, None, None, 0, 1000, 0,
|
|
|
|
gobject.PARAM_READWRITE)
|
2007-05-16 21:30:49 +02:00
|
|
|
}
|
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
def __init__(self, handle, create_jobject=True):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Initialise the Activity
|
|
|
|
|
|
|
|
handle -- sugar.activity.activityhandle.ActivityHandle
|
|
|
|
instance providing the activity id and access to the
|
|
|
|
presence service which *may* provide sharing for this
|
|
|
|
application
|
2007-05-10 11:01:32 +02:00
|
|
|
|
|
|
|
create_jobject -- boolean
|
|
|
|
define if it should create a journal object if we are
|
|
|
|
not resuming
|
|
|
|
|
2007-04-10 04:47:37 +02:00
|
|
|
Side effects:
|
|
|
|
|
|
|
|
Sets the gdk screen DPI setting (resolution) to the
|
|
|
|
Sugar screen resolution.
|
|
|
|
|
|
|
|
Connects our "destroy" message to our _destroy_cb
|
|
|
|
method.
|
|
|
|
|
|
|
|
Creates a base gtk.Window within this window.
|
|
|
|
|
|
|
|
Creates an ActivityService (self._bus) servicing
|
|
|
|
this application.
|
2007-10-28 16:56:05 +01:00
|
|
|
|
|
|
|
Usage:
|
|
|
|
If your Activity implements __init__(), it should call
|
|
|
|
the base class __init()__ before doing Activity specific things.
|
|
|
|
|
2007-04-10 04:47:37 +02:00
|
|
|
"""
|
2007-02-27 15:05:44 +01:00
|
|
|
Window.__init__(self)
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-06-27 23:12:32 +02:00
|
|
|
# process titles will only show 15 characters
|
|
|
|
# but they get truncated anyway so if more characters
|
|
|
|
# are supported in the future we will get a better view
|
|
|
|
# of the processes
|
|
|
|
proc_title = "%s <%s>" % (get_bundle_name(), handle.activity_id)
|
|
|
|
util.set_proc_title(proc_title)
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
self.connect('realize', self.__realize_cb)
|
2007-10-15 23:47:02 +02:00
|
|
|
self.connect('delete-event', self.__delete_event_cb)
|
2007-11-06 15:14:18 +01:00
|
|
|
self.connect("key_press_event", self.__key_press_event_cb)
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-05-16 21:30:49 +02:00
|
|
|
self._active = False
|
2007-02-22 00:57:49 +01:00
|
|
|
self._activity_id = handle.activity_id
|
2007-04-09 20:40:56 +02:00
|
|
|
self._pservice = presenceservice.get_instance()
|
2007-05-03 05:25:15 +02:00
|
|
|
self._shared_activity = None
|
|
|
|
self._share_id = None
|
|
|
|
self._join_id = None
|
2007-11-04 17:00:48 +01:00
|
|
|
self._preview = _sugarext.Preview()
|
2007-07-23 13:45:46 +02:00
|
|
|
self._updating_jobject = False
|
|
|
|
self._closing = False
|
2007-10-15 23:47:02 +02:00
|
|
|
self._deleting = False
|
2007-08-16 17:55:52 +02:00
|
|
|
self._max_participants = 0
|
2007-09-11 19:59:40 +02:00
|
|
|
self._invites_queue = []
|
2007-05-03 05:25:15 +02:00
|
|
|
|
2007-02-21 20:15:39 +01:00
|
|
|
self._bus = ActivityService(self)
|
2007-07-20 19:50:49 +02:00
|
|
|
self._owns_file = False
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-09-01 19:07:49 +02:00
|
|
|
share_scope = SCOPE_PRIVATE
|
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
if handle.object_id:
|
2007-05-29 15:53:58 +02:00
|
|
|
self._jobject = datastore.get(handle.object_id)
|
2007-06-29 20:24:22 +02:00
|
|
|
# TODO: Don't create so many objects until we have versioning
|
|
|
|
# support in the datastore
|
|
|
|
#self._jobject.object_id = ''
|
|
|
|
#del self._jobject.metadata['ctime']
|
2007-05-29 15:53:58 +02:00
|
|
|
del self._jobject.metadata['mtime']
|
2007-09-28 16:32:22 +02:00
|
|
|
|
|
|
|
self.set_title(self._jobject.metadata['title'])
|
|
|
|
|
|
|
|
if self._jobject.metadata.has_key('share-scope'):
|
|
|
|
share_scope = self._jobject.metadata['share-scope']
|
2007-08-28 23:07:57 +02:00
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
elif create_jobject:
|
|
|
|
logging.debug('Creating a jobject.')
|
2007-05-29 15:53:58 +02:00
|
|
|
self._jobject = datastore.create()
|
2007-06-04 19:35:05 +02:00
|
|
|
self._jobject.metadata['title'] = _('%s Activity') % get_bundle_name()
|
2007-08-28 23:07:57 +02:00
|
|
|
self.set_title(self._jobject.metadata['title'])
|
2007-06-18 20:38:20 +02:00
|
|
|
self._jobject.metadata['title_set_by_user'] = '0'
|
2007-10-09 13:15:06 +02:00
|
|
|
self._jobject.metadata['activity'] = self.get_bundle_id()
|
2007-07-20 13:15:11 +02:00
|
|
|
self._jobject.metadata['activity_id'] = self.get_id()
|
2007-05-29 15:53:58 +02:00
|
|
|
self._jobject.metadata['keep'] = '0'
|
|
|
|
self._jobject.metadata['preview'] = ''
|
2007-09-01 19:07:49 +02:00
|
|
|
self._jobject.metadata['share-scope'] = SCOPE_PRIVATE
|
2007-08-21 12:12:13 +02:00
|
|
|
|
|
|
|
if self._shared_activity is not None:
|
|
|
|
icon_color = self._shared_activity.props.color
|
|
|
|
else:
|
|
|
|
icon_color = profile.get_color().to_string()
|
|
|
|
|
|
|
|
self._jobject.metadata['icon-color'] = icon_color
|
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
self._jobject.file_path = ''
|
2007-10-16 16:18:36 +02:00
|
|
|
# Cannot call datastore.write async for creates: https://dev.laptop.org/ticket/3071
|
|
|
|
datastore.write(self._jobject)
|
2007-05-10 11:01:32 +02:00
|
|
|
else:
|
2007-05-29 15:53:58 +02:00
|
|
|
self._jobject = None
|
2007-05-10 11:01:32 +02:00
|
|
|
|
2007-09-01 19:07:49 +02:00
|
|
|
# handle activity share/join
|
2007-10-17 13:53:24 +02:00
|
|
|
mesh_instance = self._pservice.get_activity(self._activity_id,
|
|
|
|
warn_if_none=False)
|
|
|
|
logging.debug("*** Act %s, mesh instance %r, scope %s",
|
|
|
|
self._activity_id, mesh_instance, share_scope)
|
|
|
|
if mesh_instance is not None:
|
2007-09-01 19:07:49 +02:00
|
|
|
# There's already an instance on the mesh, join it
|
2007-10-16 18:51:36 +02:00
|
|
|
logging.debug("*** Act %s joining existing mesh instance %r", self._activity_id, mesh_instance)
|
2007-09-01 19:07:49 +02:00
|
|
|
self._shared_activity = mesh_instance
|
2007-09-24 13:02:51 +02:00
|
|
|
self._shared_activity.connect('notify::private',
|
2007-10-16 15:51:48 +02:00
|
|
|
self.__privacy_changed_cb)
|
|
|
|
self._join_id = self._shared_activity.connect("joined", self.__joined_cb)
|
2007-09-01 19:07:49 +02:00
|
|
|
if not self._shared_activity.props.joined:
|
|
|
|
self._shared_activity.join()
|
|
|
|
else:
|
2007-10-16 15:51:48 +02:00
|
|
|
self.__joined_cb(self._shared_activity, True, None)
|
2007-09-01 19:07:49 +02:00
|
|
|
elif share_scope != SCOPE_PRIVATE:
|
|
|
|
logging.debug("*** Act %s no existing mesh instance, but used to be shared, will share" % self._activity_id)
|
|
|
|
# no existing mesh instance, but activity used to be shared, so
|
|
|
|
# restart the share
|
|
|
|
if share_scope == SCOPE_INVITE_ONLY:
|
|
|
|
self.share(private=True)
|
|
|
|
elif share_scope == SCOPE_NEIGHBORHOOD:
|
|
|
|
self.share(private=False)
|
|
|
|
else:
|
|
|
|
logging.debug("Unknown share scope %r" % share_scope)
|
|
|
|
|
2007-05-16 21:30:49 +02:00
|
|
|
def do_set_property(self, pspec, value):
|
|
|
|
if pspec.name == 'active':
|
|
|
|
if self._active != value:
|
|
|
|
self._active = value
|
2007-05-29 15:53:58 +02:00
|
|
|
if not self._active and self._jobject:
|
2007-05-16 21:30:49 +02:00
|
|
|
self.save()
|
2007-08-16 17:55:52 +02:00
|
|
|
elif pspec.name == 'max-participants':
|
|
|
|
self._max_participants = value
|
2007-05-16 21:30:49 +02:00
|
|
|
|
|
|
|
def do_get_property(self, pspec):
|
|
|
|
if pspec.name == 'active':
|
|
|
|
return self._active
|
2007-08-16 17:32:29 +02:00
|
|
|
elif pspec.name == 'max-participants':
|
|
|
|
return self._max_participants
|
2007-05-16 21:30:49 +02:00
|
|
|
|
2007-06-03 22:12:47 +02:00
|
|
|
def get_id(self):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Returns the activity id of the current instance of your activity.
|
|
|
|
|
|
|
|
The activity id is sort-of-like the unix process id (PID). However,
|
|
|
|
unlike PIDs it is only different for each new instance (with
|
|
|
|
create_jobject = True set) and stays the same everytime a user
|
|
|
|
resumes an activity. This is also the identity of your Activity to other
|
|
|
|
XOs for use when sharing.
|
|
|
|
"""
|
2007-06-03 22:12:47 +02:00
|
|
|
return self._activity_id
|
|
|
|
|
2007-10-09 13:15:06 +02:00
|
|
|
def get_bundle_id(self):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Returns the bundle_id from the activity.info file"""
|
2007-10-16 14:29:38 +02:00
|
|
|
return os.environ['SUGAR_BUNDLE_ID']
|
2007-06-03 22:12:47 +02:00
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
def set_canvas(self, canvas):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Sets the 'work area' of your activity with the canvas of your choice.
|
|
|
|
|
|
|
|
One commonly used canvas is gtk.ScrolledWindow
|
|
|
|
"""
|
2007-05-29 15:53:58 +02:00
|
|
|
Window.set_canvas(self, canvas)
|
2007-10-16 15:51:48 +02:00
|
|
|
canvas.connect('map', self.__canvas_map_cb)
|
2007-05-29 15:53:58 +02:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __canvas_map_cb(self, canvas):
|
2007-05-29 15:53:58 +02:00
|
|
|
if self._jobject and self._jobject.file_path:
|
|
|
|
self.read_file(self._jobject.file_path)
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __jobject_create_cb(self):
|
2007-05-16 06:41:45 +02:00
|
|
|
pass
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __jobject_error_cb(self, err):
|
2007-05-16 06:41:45 +02:00
|
|
|
logging.debug("Error creating activity datastore object: %s" % err)
|
|
|
|
|
2007-08-13 21:14:25 +02:00
|
|
|
def get_activity_root(self):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Returns a path for saving Activity specific preferences, etc.
|
|
|
|
|
|
|
|
Returns a path to the location in the filesystem where the activity can
|
|
|
|
store activity related data that doesn't pertain to the current
|
|
|
|
execution of the activity and thus cannot go into the DataStore.
|
|
|
|
|
|
|
|
Currently, this will return something like ~/.sugar/default/MyActivityName/
|
|
|
|
|
|
|
|
Activities should ONLY save settings, user preferences and other data
|
|
|
|
which isn't specific to a journal item here. If (meta-)data is in anyway
|
|
|
|
specific to a journal entry, it MUST be stored in the DataStore.
|
2007-08-13 21:14:25 +02:00
|
|
|
"""
|
|
|
|
if os.environ.has_key('SUGAR_ACTIVITY_ROOT') and \
|
|
|
|
os.environ['SUGAR_ACTIVITY_ROOT']:
|
|
|
|
return os.environ['SUGAR_ACTIVITY_ROOT']
|
|
|
|
else:
|
|
|
|
return '/'
|
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
def read_file(self, file_path):
|
2007-05-10 11:01:32 +02:00
|
|
|
"""
|
|
|
|
Subclasses implement this method if they support resuming objects from
|
2007-05-29 15:53:58 +02:00
|
|
|
the journal. 'file_path' is the file to read from.
|
2007-10-28 16:56:05 +01:00
|
|
|
|
|
|
|
You should immediately open the file from the file_path, because the
|
|
|
|
file_name will be deleted immediately after returning from read_file().
|
|
|
|
Once the file has been opened, you do not have to read it immediately:
|
|
|
|
After you have opened it, the file will only be really gone when you
|
|
|
|
close it.
|
|
|
|
|
|
|
|
Although not required, this is also a good time to read all meta-data:
|
|
|
|
the file itself cannot be changed externally, but the title, description
|
|
|
|
and other metadata['tags'] may change. So if it is important for you to
|
|
|
|
notice changes, this is the time to record the originals.
|
2007-05-10 11:01:32 +02:00
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
def write_file(self, file_path):
|
2007-05-10 11:01:32 +02:00
|
|
|
"""
|
|
|
|
Subclasses implement this method if they support saving data to objects
|
2007-05-29 15:53:58 +02:00
|
|
|
in the journal. 'file_path' is the file to write to.
|
2007-10-28 16:56:05 +01:00
|
|
|
|
|
|
|
If the user did make changes, you should create the file_path and save
|
|
|
|
all document data to it.
|
|
|
|
|
|
|
|
Additionally, you should also write any metadata needed to resume your
|
|
|
|
activity. For example, the Read activity saves the current page and zoom
|
|
|
|
level, so it can display the page.
|
|
|
|
|
|
|
|
Note: Currently, the file_path *WILL* be different from the one you
|
|
|
|
received in file_read(). Even if you kept the file_path from file_read()
|
|
|
|
open until now, you must still write the entire file to this file_path.
|
2007-05-10 11:01:32 +02:00
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __save_cb(self):
|
|
|
|
logging.debug('Activity.__save_cb')
|
2007-07-23 13:45:46 +02:00
|
|
|
self._updating_jobject = False
|
|
|
|
if self._closing:
|
|
|
|
self._cleanup_jobject()
|
|
|
|
self.destroy()
|
2007-05-16 06:41:45 +02:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __save_error_cb(self, err):
|
|
|
|
logging.debug('Activity.__save_error_cb')
|
2007-07-23 13:45:46 +02:00
|
|
|
self._updating_jobject = False
|
|
|
|
if self._closing:
|
|
|
|
self._cleanup_jobject()
|
|
|
|
self.destroy()
|
2007-05-16 06:41:45 +02:00
|
|
|
logging.debug("Error saving activity object to datastore: %s" % err)
|
|
|
|
|
2007-07-23 13:45:46 +02:00
|
|
|
def _cleanup_jobject(self):
|
|
|
|
if self._jobject:
|
|
|
|
if self._owns_file and os.path.isfile(self._jobject.file_path):
|
|
|
|
logging.debug('_cleanup_jobject: removing %r' % self._jobject.file_path)
|
|
|
|
os.remove(self._jobject.file_path)
|
|
|
|
self._owns_file = False
|
|
|
|
self._jobject.destroy()
|
|
|
|
self._jobject = None
|
|
|
|
|
2007-06-29 20:24:22 +02:00
|
|
|
def _get_preview(self):
|
2007-11-04 17:00:48 +01:00
|
|
|
pixbuf = self._preview.get_pixbuf()
|
|
|
|
if pixbuf is None:
|
2007-07-11 11:02:43 +02:00
|
|
|
return None
|
2007-06-15 18:03:17 +02:00
|
|
|
|
2007-11-04 17:00:48 +01:00
|
|
|
pixbuf = pixbuf.scale_simple(style.zoom(300), style.zoom(225),
|
|
|
|
gtk.gdk.INTERP_BILINEAR)
|
|
|
|
|
|
|
|
# TODO: Find a way of taking a png out of the pixbuf without saving
|
|
|
|
# to a temp file. Impementing gtk.gdk.Pixbuf.save_to_buffer in pygtk
|
|
|
|
# would solve this.
|
2007-06-15 18:03:17 +02:00
|
|
|
fd, file_path = tempfile.mkstemp('.png')
|
|
|
|
del fd
|
2007-11-04 17:00:48 +01:00
|
|
|
|
|
|
|
pixbuf.save(file_path, 'png')
|
2007-06-15 18:03:17 +02:00
|
|
|
f = open(file_path)
|
|
|
|
try:
|
|
|
|
preview_data = f.read()
|
|
|
|
finally:
|
|
|
|
f.close()
|
|
|
|
os.remove(file_path)
|
|
|
|
|
2007-11-04 17:00:48 +01:00
|
|
|
self._preview.clear()
|
|
|
|
|
2007-10-05 22:39:45 +02:00
|
|
|
return preview_data
|
2007-06-29 20:24:22 +02:00
|
|
|
|
|
|
|
def _get_buddies(self):
|
2007-08-21 12:12:13 +02:00
|
|
|
if self._shared_activity is not None:
|
|
|
|
buddies = {}
|
|
|
|
for buddy in self._shared_activity.get_joined_buddies():
|
|
|
|
if not buddy.props.owner:
|
|
|
|
buddy_id = sha1(buddy.props.key).hexdigest()
|
|
|
|
buddies[buddy_id] = [buddy.props.nick, buddy.props.color]
|
|
|
|
return buddies
|
|
|
|
else:
|
|
|
|
return {}
|
2007-06-29 20:24:22 +02:00
|
|
|
|
2007-10-23 15:19:17 +02:00
|
|
|
def take_screenshot(self):
|
2007-11-04 17:00:48 +01:00
|
|
|
if self.canvas and self.canvas.window:
|
|
|
|
self._preview.take_screenshot(self.canvas.window)
|
2007-10-23 15:19:17 +02:00
|
|
|
|
2007-06-29 20:24:22 +02:00
|
|
|
def save(self):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Request that the activity is saved to the Journal.
|
|
|
|
|
|
|
|
This method is called by the close() method below. In general,
|
|
|
|
activities should not override this method. This method is part of the
|
|
|
|
public API of an Acivity, and should behave in standard ways. Use your
|
|
|
|
own implementation of write_file() to save your Activity specific data.
|
|
|
|
"""
|
2007-07-23 13:45:46 +02:00
|
|
|
|
2007-08-31 15:43:38 +02:00
|
|
|
logging.debug('Activity.save: %r' % self._jobject.object_id)
|
|
|
|
|
2007-07-23 13:45:46 +02:00
|
|
|
if self._updating_jobject:
|
2007-09-10 17:58:01 +02:00
|
|
|
logging.info('Activity.save: still processing a previous request.')
|
2007-07-23 13:45:46 +02:00
|
|
|
return
|
|
|
|
|
2007-08-21 12:12:13 +02:00
|
|
|
buddies_dict = self._get_buddies()
|
|
|
|
if buddies_dict:
|
|
|
|
self.metadata['buddies_id'] = json.write(buddies_dict.keys())
|
|
|
|
self.metadata['buddies'] = json.write(self._get_buddies())
|
|
|
|
|
2007-11-04 17:00:48 +01:00
|
|
|
preview = self._get_preview()
|
|
|
|
if self._preview:
|
|
|
|
self.metadata['preview'] = dbus.ByteArray(preview)
|
2007-08-21 12:12:13 +02:00
|
|
|
|
2007-05-10 11:01:32 +02:00
|
|
|
try:
|
2007-11-09 15:43:54 +01:00
|
|
|
file_path = os.path.join(self.get_activity_root(), 'instance',
|
|
|
|
'%i' % time.time())
|
|
|
|
self.write_file(file_path)
|
|
|
|
self._owns_file = True
|
|
|
|
self._jobject.file_path = file_path
|
2007-05-10 11:01:32 +02:00
|
|
|
except NotImplementedError:
|
2007-05-29 15:53:58 +02:00
|
|
|
pass
|
2007-09-10 17:58:01 +02:00
|
|
|
|
|
|
|
# Cannot call datastore.write async for creates: https://dev.laptop.org/ticket/3071
|
|
|
|
if self._jobject.object_id is None:
|
|
|
|
datastore.write(self._jobject, transfer_ownership=True)
|
|
|
|
else:
|
|
|
|
self._updating_jobject = True
|
|
|
|
datastore.write(self._jobject,
|
|
|
|
transfer_ownership=True,
|
2007-10-16 15:51:48 +02:00
|
|
|
reply_handler=self.__save_cb,
|
|
|
|
error_handler=self.__save_error_cb)
|
2007-05-10 11:01:32 +02:00
|
|
|
|
2007-08-31 15:43:38 +02:00
|
|
|
def copy(self):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Request that the activity 'Keep in Journal' the current state of the activity.
|
|
|
|
|
|
|
|
Activities should not override this method. Instead, like save() do any
|
|
|
|
copy work that needs to be done in write_file()
|
|
|
|
"""
|
2007-08-31 15:43:38 +02:00
|
|
|
logging.debug('Activity.copy: %r' % self._jobject.object_id)
|
|
|
|
self.save()
|
|
|
|
self._jobject.object_id = None
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __privacy_changed_cb(self, shared_activity, param_spec):
|
2007-09-24 13:02:51 +02:00
|
|
|
if shared_activity.props.private:
|
|
|
|
self._jobject.metadata['share-scope'] = SCOPE_INVITE_ONLY
|
|
|
|
else:
|
|
|
|
self._jobject.metadata['share-scope'] = SCOPE_NEIGHBORHOOD
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __joined_cb(self, activity, success, err):
|
2007-05-03 05:25:15 +02:00
|
|
|
"""Callback when join has finished"""
|
|
|
|
self._shared_activity.disconnect(self._join_id)
|
|
|
|
self._join_id = None
|
|
|
|
if not success:
|
|
|
|
logging.debug("Failed to join activity: %s" % err)
|
|
|
|
return
|
2007-09-12 13:35:39 +02:00
|
|
|
|
2007-05-03 05:25:15 +02:00
|
|
|
self.present()
|
|
|
|
self.emit('joined')
|
2007-10-16 15:51:48 +02:00
|
|
|
self.__privacy_changed_cb(self._shared_activity, None)
|
2007-05-03 05:25:15 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def get_shared(self):
|
|
|
|
"""Returns TRUE if the activity is shared on the mesh."""
|
2007-05-03 05:25:15 +02:00
|
|
|
if not self._shared_activity:
|
|
|
|
return False
|
|
|
|
return self._shared_activity.props.joined
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __share_cb(self, ps, success, activity, err):
|
2007-05-03 05:25:15 +02:00
|
|
|
self._pservice.disconnect(self._share_id)
|
|
|
|
self._share_id = None
|
|
|
|
if not success:
|
|
|
|
logging.debug('Share of activity %s failed: %s.' % (self._activity_id, err))
|
|
|
|
return
|
2007-09-11 19:59:40 +02:00
|
|
|
|
2007-10-16 18:51:36 +02:00
|
|
|
logging.debug('Share of activity %s successful, PS activity is %r.',
|
|
|
|
self._activity_id, activity)
|
2007-08-31 11:37:42 +02:00
|
|
|
|
|
|
|
activity.props.name = self._jobject.metadata['title']
|
|
|
|
|
2007-05-09 17:32:16 +02:00
|
|
|
self._shared_activity = activity
|
2007-09-24 13:02:51 +02:00
|
|
|
self._shared_activity.connect('notify::private',
|
2007-10-16 15:51:48 +02:00
|
|
|
self.__privacy_changed_cb)
|
2007-04-27 22:07:38 +02:00
|
|
|
self.emit('shared')
|
2007-10-16 15:51:48 +02:00
|
|
|
self.__privacy_changed_cb(self._shared_activity, None)
|
2007-09-11 19:59:40 +02:00
|
|
|
|
|
|
|
self._send_invites()
|
2006-12-20 00:53:27 +01:00
|
|
|
|
2007-09-11 17:53:27 +02:00
|
|
|
def _invite_response_cb(self, error):
|
|
|
|
if error:
|
|
|
|
logging.error('Invite failed: %s' % error)
|
|
|
|
|
2007-09-11 19:59:40 +02:00
|
|
|
def _send_invites(self):
|
|
|
|
while self._invites_queue:
|
|
|
|
buddy_key = self._invites_queue.pop()
|
|
|
|
buddy = self._pservice.get_buddy(buddy_key)
|
|
|
|
if buddy:
|
|
|
|
self._shared_activity.invite(buddy, '', self._invite_response_cb)
|
|
|
|
else:
|
|
|
|
logging.error('Cannot invite %s, no such buddy.' % buddy_key)
|
|
|
|
|
2007-09-11 17:53:27 +02:00
|
|
|
def invite(self, buddy_key):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Invite a buddy to join this Activity.
|
|
|
|
|
|
|
|
Side Effects:
|
|
|
|
Calls self.share(True) to privately share the activity if it wasn't
|
|
|
|
shared before.
|
|
|
|
"""
|
2007-09-11 19:59:40 +02:00
|
|
|
self._invites_queue.append(buddy_key)
|
2007-09-11 17:53:27 +02:00
|
|
|
|
2007-09-24 13:02:51 +02:00
|
|
|
if (self._shared_activity is None
|
|
|
|
or not self._shared_activity.props.joined):
|
2007-09-11 19:59:40 +02:00
|
|
|
self.share(True)
|
2007-09-11 17:53:27 +02:00
|
|
|
else:
|
2007-09-11 19:59:40 +02:00
|
|
|
self._send_invites()
|
2007-09-11 17:53:27 +02:00
|
|
|
|
2007-08-22 16:54:12 +02:00
|
|
|
def share(self, private=False):
|
|
|
|
"""Request that the activity be shared on the network.
|
|
|
|
|
|
|
|
private -- bool: True to share by invitation only,
|
|
|
|
False to advertise as shared to everyone.
|
2007-08-30 13:13:31 +02:00
|
|
|
|
|
|
|
Once the activity is shared, its privacy can be changed by setting
|
|
|
|
its 'private' property.
|
2007-08-22 16:54:12 +02:00
|
|
|
"""
|
2007-05-03 21:06:00 +02:00
|
|
|
if self._shared_activity and self._shared_activity.props.joined:
|
2007-08-22 16:54:12 +02:00
|
|
|
raise RuntimeError("Activity %s already shared." %
|
|
|
|
self._activity_id)
|
|
|
|
verb = private and 'private' or 'public'
|
|
|
|
logging.debug('Requesting %s share of activity %s.' %
|
|
|
|
(verb, self._activity_id))
|
|
|
|
self._share_id = self._pservice.connect("activity-shared",
|
2007-10-16 15:51:48 +02:00
|
|
|
self.__share_cb)
|
2007-08-23 14:48:16 +02:00
|
|
|
self._pservice.share_activity(self, private=private)
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-11-13 15:59:24 +01:00
|
|
|
def _display_keep_failed_dialog(self):
|
|
|
|
alert = Alert()
|
|
|
|
alert.props.title = _('Keep error')
|
|
|
|
alert.props.msg = _('Keep error: all changes will be lost')
|
|
|
|
|
|
|
|
cancel_icon = Icon(icon_name='dialog-cancel')
|
|
|
|
alert.add_button(gtk.RESPONSE_CANCEL, _('Don\'t stop'), cancel_icon)
|
|
|
|
|
|
|
|
stop_icon = Icon(icon_name='dialog-ok')
|
|
|
|
alert.add_button(gtk.RESPONSE_OK, _('Stop anyway'), stop_icon)
|
|
|
|
|
|
|
|
self.add_alert(alert)
|
|
|
|
alert.connect('response', self._keep_failed_dialog_response_cb)
|
|
|
|
|
|
|
|
def _keep_failed_dialog_response_cb(self, alert, response_id):
|
|
|
|
self.remove_alert(alert)
|
|
|
|
if response_id == gtk.RESPONSE_OK:
|
|
|
|
self.close(skip_save=True)
|
|
|
|
|
|
|
|
def close(self, skip_save=False):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Request that the activity be stopped and saved to the Journal
|
|
|
|
|
|
|
|
Activities should not override this method, but should implement write_file() to
|
|
|
|
do any state saving instead.
|
|
|
|
"""
|
2007-11-13 15:59:24 +01:00
|
|
|
try:
|
|
|
|
if not skip_save:
|
|
|
|
self.save()
|
|
|
|
except:
|
|
|
|
logging.info(traceback.format_exc())
|
|
|
|
self._display_keep_failed_dialog()
|
|
|
|
return
|
2007-07-23 13:45:46 +02:00
|
|
|
|
2007-05-03 05:25:15 +02:00
|
|
|
if self._shared_activity:
|
|
|
|
self._shared_activity.leave()
|
2007-02-22 15:55:07 +01:00
|
|
|
|
2007-07-23 13:45:46 +02:00
|
|
|
if self._updating_jobject:
|
2007-10-15 23:47:02 +02:00
|
|
|
self._closing = True
|
2007-07-23 13:45:46 +02:00
|
|
|
else:
|
2007-10-15 23:47:02 +02:00
|
|
|
self.destroy()
|
|
|
|
|
2007-10-16 15:51:48 +02:00
|
|
|
def __realize_cb(self, window):
|
2007-10-15 23:47:02 +02:00
|
|
|
wm.set_bundle_id(window.window, self.get_bundle_id())
|
2007-10-16 14:40:43 +02:00
|
|
|
wm.set_activity_id(window.window, str(self._activity_id))
|
2007-10-15 23:47:02 +02:00
|
|
|
|
|
|
|
def __delete_event_cb(self, widget, event):
|
|
|
|
self.close()
|
|
|
|
return True
|
2007-04-27 22:07:38 +02:00
|
|
|
|
2007-05-29 15:53:58 +02:00
|
|
|
def get_metadata(self):
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Returns the jobject metadata or None if there is no jobject.
|
|
|
|
|
|
|
|
Activities can set metadata in write_file() using:
|
|
|
|
self.metadata['MyKey'] = "Something"
|
|
|
|
|
|
|
|
and retrieve metadata in read_file() using:
|
|
|
|
self.metadata.get('MyKey', 'aDefaultValue')
|
|
|
|
|
|
|
|
Note: Make sure your activity works properly if one or more of the
|
|
|
|
metadata items is missing. Never assume they will all be present.
|
|
|
|
"""
|
2007-05-29 15:53:58 +02:00
|
|
|
if self._jobject:
|
|
|
|
return self._jobject.metadata
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
metadata = property(get_metadata, None)
|
|
|
|
|
2007-11-06 15:14:18 +01:00
|
|
|
def __key_press_event_cb(self, widget, event):
|
|
|
|
key = gtk.gdk.keyval_name(event.keyval)
|
|
|
|
if key == 's' and (event.state & gtk.gdk.CONTROL_MASK):
|
|
|
|
logging.debug('Keep requested')
|
|
|
|
self.copy()
|
|
|
|
return True
|
|
|
|
|
2007-05-14 19:56:06 +02:00
|
|
|
def get_bundle_name():
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Return the bundle name for the current process' bundle"""
|
2007-10-16 14:29:38 +02:00
|
|
|
return os.environ['SUGAR_BUNDLE_NAME']
|
2007-05-14 19:56:06 +02:00
|
|
|
|
2007-02-22 15:55:07 +01:00
|
|
|
def get_bundle_path():
|
2007-10-28 16:56:05 +01:00
|
|
|
"""Return the bundle path for the current process' bundle"""
|
2007-02-23 17:08:37 +01:00
|
|
|
return os.environ['SUGAR_BUNDLE_PATH']
|
2007-06-27 23:12:32 +02:00
|
|
|
|