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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
# -*- coding: utf-8 -*-
# This file is part of emesene.
#
# Eval plugin is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Eval plugin 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with emesene; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
VERSION = '0.2'
import os
import sys
import time
import socket
import emesenelib.common
import Plugin
class MainClass( Plugin.Plugin ):
'''Main plugin class'''
def __init__( self, controller, msn ):
'''Contructor'''
Plugin.Plugin.__init__( self, controller, msn )
self.description = _('Make some useful commands available, try /help')
self.authors = { 'marianoguerra' : 'luismarianoguerra gmail com' }
self.website = 'http://emesene.org'
self.displayName = _('Commands')
self.name = 'Commands'
self.controller = controller
self.Slash = controller.Slash
self.vars = {}
self.vars['%me%'] = self._me
self.vars['%nick%'] = self._nick
self.vars['%status%'] = self._status
self.vars['%mail%'] = self._mail
self.vars['%date%'] = self._date
self.vars['%time%'] = self._time
self.vars['%host%'] = self._host
self.vars['%ip%'] = self._ip
def _me(self):
return self.controller.msn.user.split('@')[0]
def _nick(self):
return self.controller.msn.nick
def _status(self):
return emesenelib.common.reverse_status[self.controller.msn.status]
def _mail(self):
return self.controller.msn.user
def _date(self):
return time.strftime('%d-%b-%y')
def _time(self):
return time.strftime( '%H:%M' )
def _host(self):
return socket.gethostname()
def _ip(self):
try:
result = socket.getaddrinfo(self._host(), None, 0, socket.SOCK_STREAM)
return ''.join([x[4][0] for x in result])
except socket.gaierror:
return '0.0.0.0'
def start( self ):
'''start the plugin'''
self.Slash.register('repl', self.repl, _('Replaces variables'))
self.Slash.register('me', self.slash_me,
_('Replaces me with your username'))
self.Slash.register('nudge', self.slash_nudge,
_('Sends a nudge'))
self.Slash.register('invite', self.slash_invite,
_('Invites a buddy'))
self.Slash.register('send', self.slash_send,
_('Send a file'))
self.Slash.register('add', self.slash_contact_actions,
_('Add a contact'))
self.Slash.register('remove', self.slash_contact_actions,
_('Remove a contact'))
self.Slash.register('block', self.slash_contact_actions,
_('Block a contact'))
self.Slash.register('unblock', self.slash_contact_actions,
_('Unblock a contact'))
self.Slash.register('clear', self.slash_clear,
_('Clear the conversation'))
self.Slash.register('nick', self.slash_nick_psm,
_('Set your nick'))
self.Slash.register('psm', self.slash_nick_psm,
_('Set your psm'))
self.enabled = True
def repl(self, slash_action):
data = slash_action.getParams()
for (var,replacement) in self.vars.iteritems():
data = data.replace(var, replacement())
slash_action.outputText(data, True)
def slash_me(self, slash_action):
data = slash_action.getParams()
slash_action.outputText(self._nick() + ' ' + data, True)
def slash_nick_psm(self, slash_action):
'''Set your nick or psm'''
data = slash_action.params
name = slash_action.name
contact_manager = self.controller.contacts
if name == 'nick':
contact_manager.set_nick(data)
elif name == 'psm':
contact_manager.set_message(data)
def slash_nudge(self, slash_action):
slash_action.conversation.doNudge()
def slash_invite(self, slash_action):
slash_action.conversation.parentConversationWindow.show_invite_dialog()
def slash_contact_actions(self, slash_action):
contacts = self.controller.contacts
data = slash_action.params
name = slash_action.name
if not data:
slash_action.outputText(_("Usage /%s contact" % name))
return
if name == 'add':
contacts.add(data)
elif name == 'block':
contacts.block(data)
elif name == 'unblock':
contacts.unblock(data)
elif name == 'remove':
contacts.remove(data)
def slash_send(self, slash_action):
'''Send a file'''
conversation = slash_action.conversation
file_path = slash_action.params
if file_path:
if os.path.exists(file_path):
conversation.sendFile(file_path)
else:
slash_action.outputText(_("File doesn't exist"))
else:
conversation.parentConversationWindow.send_file_dialog()
def slash_clear(self, slash_action):
slash_action.conversation.parentConversationWindow.clearOutputText()
def stop( self ):
'''stop the plugin'''
self.Slash.unregister('repl')
self.Slash.unregister('me')
self.Slash.unregister('nudge')
self.Slash.unregister('invite')
self.Slash.unregister('send')
self.Slash.unregister('add')
self.Slash.unregister('remove')
self.Slash.unregister('block')
self.Slash.unregister('unblock')
self.Slash.unregister('clear')
self.Slash.unregister('psm')
self.enabled = False
def check( self ):
return ( True, 'Ok' )
|