new application boobmsg
This commit is contained in:
parent
9a13c44094
commit
b89e82108c
3 changed files with 99 additions and 0 deletions
25
scripts/boobmsg
Executable file
25
scripts/boobmsg
Executable file
|
|
@ -0,0 +1,25 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: ft=python et softtabstop=4 cinoptions=4 shiftwidth=4 ts=4 ai
|
||||||
|
|
||||||
|
# Copyright(C) 2010 Christophe Benz
|
||||||
|
#
|
||||||
|
# This program 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, version 3 of the License.
|
||||||
|
#
|
||||||
|
# This program 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 this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
|
||||||
|
from weboob.applications.boobmsg import Boobmsg
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
Boobmsg.run()
|
||||||
21
weboob/applications/boobmsg/__init__.py
Normal file
21
weboob/applications/boobmsg/__init__.py
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright(C) 2010 Christophe Benz
|
||||||
|
#
|
||||||
|
# This program 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, version 3 of the License.
|
||||||
|
#
|
||||||
|
# This program 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 this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
|
||||||
|
from .boobmsg import Boobmsg
|
||||||
|
|
||||||
|
__all__ = ['Boobmsg']
|
||||||
53
weboob/applications/boobmsg/boobmsg.py
Normal file
53
weboob/applications/boobmsg/boobmsg.py
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright(C) 2010 Christophe Benz
|
||||||
|
#
|
||||||
|
# This program 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, version 3 of the License.
|
||||||
|
#
|
||||||
|
# This program 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 this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from weboob.capabilities.messages import ICapMessagesPost, Message
|
||||||
|
from weboob.tools.application.repl import ReplApplication
|
||||||
|
from weboob.tools.application.formatters.iformatter import IFormatter
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ['Boobmsg']
|
||||||
|
|
||||||
|
|
||||||
|
class Boobmsg(ReplApplication):
|
||||||
|
APPNAME = 'boobmsg'
|
||||||
|
VERSION = '0.4'
|
||||||
|
COPYRIGHT = 'Copyright(C) 2010 Christophe Benz'
|
||||||
|
CAPS = ICapMessagesPost
|
||||||
|
|
||||||
|
def do_post(self, line):
|
||||||
|
"""
|
||||||
|
post TO
|
||||||
|
|
||||||
|
Post a message to the specified receiver.
|
||||||
|
The content of message is read on stdin.
|
||||||
|
"""
|
||||||
|
if not line:
|
||||||
|
print >>sys.stderr, 'You must give a receiver.'
|
||||||
|
return
|
||||||
|
receiver, backend_name = self.parse_id(line.strip())
|
||||||
|
names = (backend_name,) if backend_name is not None else None
|
||||||
|
if self.interactive:
|
||||||
|
print 'Reading message content from stdin... Type ctrl-D from an empty line to post message.'
|
||||||
|
content = sys.stdin.read()
|
||||||
|
message = Message(thread=None, id=None, content=content, receiver=receiver)
|
||||||
|
self.do('post_message', message, backends=names)
|
||||||
|
if self.interactive:
|
||||||
|
print 'Message sucessfully sent.'
|
||||||
Loading…
Add table
Add a link
Reference in a new issue