forked from torhve/Weechat-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy.py
76 lines (62 loc) · 2 KB
/
proxy.py
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
# -*- coding: utf-8 -*-
###
# Copyright (c) 2010 by xt <[email protected]>
# License: GPL3
#
#
#
# Usage scenarios:
#
# * Remote control weechat from a jabber account (from phone for example)
# Requires you to send commands starting with a /
# * Reply to messages sent via away_action
# Requires away_action.py installed, will send input to the last buffer away_action recieved a
# message from
#
#
# History:
# 2010-11-04
# version 0.1: initial release
#
###
SCRIPT_NAME = "proxy"
SCRIPT_AUTHOR = "xt <[email protected]>"
SCRIPT_VERSION = "0.1"
SCRIPT_LICENSE = "GPL3"
SCRIPT_DESC = "Run commands recieved in a configurable buffer"
### Default Settings ###
settings = {
'buffer': '[email protected]', # Buffer to listen for commands
}
try:
import weechat
w = weechat
WEECHAT_RC_OK = weechat.WEECHAT_RC_OK
import_ok = True
except:
print "This script must be run under WeeChat."
print "Get WeeChat now at: http://www.weechat.org/"
import_ok = False
def proxy_cb(data, buffer, time, tags, display, hilight, prefix, msg):
if msg.startswith('/'):
w.command('', msg)
else:
buffer = w.info_get('away_action_buffer', '')
if buffer:
w.command(buffer, msg)
return WEECHAT_RC_OK
def conf_update(*args):
if w.config_get_plugin('buffer'):
buffer = w.buffer_search('', w.config_get_plugin('buffer'))
if buffer:
weechat.hook_print(buffer, '', '', 1, 'proxy_cb', '')
return WEECHAT_RC_OK
if __name__ == '__main__' and import_ok and \
weechat.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE, SCRIPT_DESC,
'', ''):
for opt, val in settings.iteritems():
if not weechat.config_is_set_plugin(opt):
weechat.config_set_plugin(opt, val)
weechat.hook_config('plugins.var.python.%s' %SCRIPT_NAME, 'conf_update', '')
conf_update() # To init hook
# vim:set shiftwidth=4 tabstop=4 softtabstop=4 expandtab textwidth=100: