add invite autojoin

localirc
Ben Harris 2018-10-17 21:56:45 -04:00
parent e524f12876
commit 5952045de5
6 changed files with 129 additions and 4 deletions

View File

@ -19,7 +19,7 @@ suggestion_delimiter_word = cyan
commands = "ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic"
default_dict = ""
during_search = off
enabled = on
enabled = off
real_time = off
suggestions = -1
word_min_length = 2

View File

@ -221,7 +221,7 @@ hashbang.local_hostname
hashbang.usermode
hashbang.command = "/oper benharri x"
hashbang.command_delay
hashbang.autojoin = "#sapeint,#!support,#!space,#!politics,#!os,#!social,#!,#!opers"
hashbang.autojoin = "#something,#sapeint,#!support,#!space,#!politics,#!os,#!social,#!,#!opers"
hashbang.autorejoin
hashbang.autorejoin_delay
hashbang.connection_timeout
@ -467,7 +467,7 @@ freenode.local_hostname
freenode.usermode
freenode.command
freenode.command_delay
freenode.autojoin = "#weechat,#systemd-unregistered,#litepub,##oodnet,#alacritty,#disroot,#fediverse,#irc.net,#lobsters,#lobsters-boil,#lxcontainers,#thelounge,#gitea,#mailpile,#mastodon,#pleroma,#pleroma-offtopic,#pixelfed,#pixelfed-offtopic,#oragono,##csharp,#vim,#weechat-android 6:10,#systemd"
freenode.autojoin = "#freenode,#weechat,#systemd-unregistered,#litepub,##oodnet,#alacritty,#disroot,#fediverse,#irc.net,#lobsters,#lobsters-boil,#lxcontainers,#thelounge,#gitea,#mailpile,#mastodon,#pleroma,#pleroma-offtopic,#pixelfed,#pixelfed-offtopic,#oragono,##csharp,#vim,#weechat-android #freenode-overflow,6:10,#systemd"
freenode.autorejoin
freenode.autorejoin_delay
freenode.connection_timeout

View File

@ -42,6 +42,11 @@ python.apply_corrections.message_limit = "2"
python.apply_corrections.print_format = "[nick]: [corrected]"
python.apply_corrections.print_limit = "1"
python.autojoin.autosave = "on"
python.autojoin_on_invite.autojoin_key = "on"
python.autojoin_on_invite.ignore_channels = ""
python.autojoin_on_invite.ignore_nicks = ""
python.autojoin_on_invite.whitelist_channels = ""
python.autojoin_on_invite.whitelist_nicks = ""
python.autosavekey.add = "on"
python.autosavekey.mute = "off"
python.autosavekey.secure = "on"

View File

@ -0,0 +1,119 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2009 by xt <xt@bash.no>
#
# 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; either version 3 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.
#
#
# (this script requires WeeChat 0.3.0 or newer)
#
# History:
# 2015-10-11, Simmo Saan <simmo.saan@gmail.com>
# version 0.6: allow joining channels with keys in autojoin
# 2013-12-21, Sebastien Helleu <flashcode@flashtux.org>
# version 0.5: fix parsing of INVITE message
# 2013-11-28, sakkemo <scajanus@gmail.com>
# version 0.4: add whitelist for nicks/channels
# 2009-11-09, xt <xt@bash.no>
# version 0.3: add ignore option for channels
# 2009-10-29, xt <xt@bash.no>
# version 0.2: add ignore option
# 2009-10-28, xt <xt@bash.no>
# version 0.1: initial release
import weechat as w
import re
SCRIPT_NAME = "autojoin_on_invite"
SCRIPT_AUTHOR = "xt <xt@bash.no>"
SCRIPT_VERSION = "0.6"
SCRIPT_LICENSE = "GPL3"
SCRIPT_DESC = "Auto joins channels when invited"
# script options
settings = {
'whitelist_nicks': '', # comma separated list of nicks,
# overrides ignore_nicks
'whitelist_channels': '', # comma separated list of channels,
# overrides ignore_channels
'ignore_nicks': '', # comma separated list of nicks
#that we will not accept auto invite from
'ignore_channels': '', # comma separated list of channels to not join
'autojoin_key': 'on', # use channel keys from server's autojoin list
}
if w.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE,
SCRIPT_DESC, "", ""):
for option, default_value in settings.iteritems():
if not w.config_is_set_plugin(option):
w.config_set_plugin(option, default_value)
w.hook_signal('*,irc_in2_invite', 'invite_cb', '')
def join(server, channel):
key = None
if w.config_string_to_boolean(w.config_get_plugin('autojoin_key')):
autojoin = w.config_string(w.config_get('irc.server.%s.autojoin' % server)).split(' ', 1)
if len(autojoin) > 1: # any keys specified
autojoin_keys = dict(zip(autojoin[0].split(','), autojoin[1].split(',')))
key = autojoin_keys.get(channel) # defaults to None when not set
if key:
w.command('', '/quote -server %s JOIN %s %s' % (server, channel, key))
else:
w.command('', '/quote -server %s JOIN %s' % (server, channel))
def invite_cb(data, signal, signal_data):
server = signal.split(',')[0] # EFNet,irc_in_INVITE
channel = signal_data.split()[-1].lstrip(':') # :nick!ident@host.name INVITE yournick :#channel
from_nick = re.match(':(?P<nick>.+)!', signal_data).groups()[0]
if len(w.config_get_plugin('whitelist_nicks')) > 0 and len(w.config_get_plugin('whitelist_channels')) > 0: # if there's two whitelists, accept both
if from_nick in w.config_get_plugin('whitelist_nicks').split(',') or channel in w.config_get_plugin('whitelist_channels').split(','):
w.prnt('', 'Automatically joining %s on server %s, invitation from %s (whitelist).' \
%(channel, server, from_nick))
join(server, channel)
else:
w.prnt('', 'Ignoring invite from %s to channel %s. Neither inviter nor channel in whitelist.' %(from_nick, channel))
elif len(w.config_get_plugin('whitelist_nicks')) > 0: # if there's a whitelist, accept nicks in it
if from_nick in w.config_get_plugin('whitelist_nicks').split(','):
w.prnt('', 'Automatically joining %s on server %s, invitation from %s (whitelist).' \
%(channel, server, from_nick))
join(server, channel)
else:
w.prnt('', 'Ignoring invite from %s to channel %s. Inviter not in whitelist.' %(from_nick, channel))
elif len(w.config_get_plugin('whitelist_channels')) > 0: # if there's a whitelist, accept channels in it
if channel in w.config_get_plugin('whitelist_channels').split(','):
w.prnt('', 'Automatically joining %s on server %s, invitation from %s (whitelist).' \
%(channel, server, from_nick))
join(server, channel)
else:
w.prnt('', 'Ignoring invite from %s to channel %s. Channel not in whitelist.' %(from_nick, channel))
else: # use the ignore lists to make the decision
if from_nick in w.config_get_plugin('ignore_nicks').split(','):
w.prnt('', 'Ignoring invite from %s to channel %s. Invite from ignored inviter.' %(from_nick, channel))
elif channel in w.config_get_plugin('ignore_channels').split(','):
w.prnt('', 'Ignoring invite from %s to channel %s. Invite to ignored channel.' %(from_nick, channel))
else:
w.prnt('', 'Automatically joining %s on server %s, invitation from %s.' \
%(channel, server, from_nick))
join(server, channel)
return w.WEECHAT_RC_OK

View File

@ -0,0 +1 @@
../autojoin_on_invite.py

View File

@ -110,7 +110,7 @@ prefix_error = "=!="
prefix_join = "-->"
prefix_network = "--"
prefix_quit = "<--"
prefix_same_nick = ""
prefix_same_nick = "-"
prefix_suffix = "│"
quote_nick_prefix = "<"
quote_nick_suffix = ">"