SSH पर ध्वनि सूचना


13

मैंने बस कोनेवरेशन आईआरसी क्लाइंट से टर्मिनल आधारित आईआरएसएसआई पर स्विच किया। मैं GNU स्क्रीन + SSH का उपयोग करके एक दूरस्थ मशीन पर IRSSI शुरू कर रहा हूं। मुझे नए संदेशों पर कोई ध्वनि सूचना नहीं मिलती है, जिसका अर्थ है कि मुझे नए संदेशों के लिए एक बार आईआरएसएसआई की जांच करनी होगी।

यह वास्तव में उत्पादक नहीं है, इसलिए मैं एक ऐसे एप्लिकेशन / स्क्रिप्ट की तलाश कर रहा हूं, जो /usr/share/sounds/KDE-Im-Irc-Event.oggकिसी भी गतिविधि के दौरान मेरी मशीन पर एक ध्वनि (अधिमानतः और कष्टप्रद बीप) नहीं बजाए । यह बहुत अच्छा होगा अगर मैं कुछ चैनलों के लिए अधिसूचना को अक्षम कर सकता हूं।

या, यदि यह संभव नहीं है, तो किसी प्रकार की अधिसूचना libnotify, इस प्रकार यह गनोम और केडीई को उपलब्ध कराती है।

जवाबों:


10

मुझे विमोचन पसंद नहीं था, इसलिए मैंने पायथन में एक यूडीपी सर्वर और irssi के लिए एक क्लाइंट एप्लिकेशन बनाया। ध्यान दें कि यह उत्तर 1 संशोधन में मूल आवश्यकताओं पर लागू होता है , इसमें पाठ अधिसूचना नहीं है।

ग्राहक

यह संस्करण आपके द्वारा निर्देशित विभिन्न संदेशों पर प्रतिक्रिया करता है। यदि आप किसी भी चैनल में संदेशों को अधिसूचित करना चाहते हैं, #तो #'message public'लाइन में अग्रणी को हटा दें । कुछ दर-सीमा को लागू किया जाता है, सूचनाओं के बीच कम से कम 1.3 सेकंड की देरी होगी।

##
## Put me in ~/.irssi/scripts, and then execute the following in irssi:
##
##       /load perl
##       /script load notifyudp
##

use strict;
use Irssi;
use IO::Socket;
use vars qw($VERSION %IRSSI);
use Time::HiRes qw(time);

$VERSION = "0.3.20140930";
%IRSSI = (
    authors     => 'Lekensteyn',
    contact     => 'lekensteyn@gmail.com',
    name        => 'notifyudp.pl',
    description => 'Send a UDP signal to a remote machine',
    license     => 'GPLv3+'
);

Irssi::settings_add_str('notifyudp', 'notifyudp_ip_addr', '');
# port 0 = disabled
Irssi::settings_add_int('notifyudp', 'notifyudp_port', 0);
Irssi::settings_add_bool('notifyudp', 'notifyudp_auto_start', 0);

my $sock;

sub notify_load {
    if ($sock) {
        Irssi::print('NotifyUDP: Already connected.');
        return;
    }
    my $ip = Irssi::settings_get_str('notifyudp_ip_addr');
    my $port = Irssi::settings_get_int('notifyudp_port');
    if (!$port || !$ip) {
        Irssi::print('NotifyUDP: No port or host set, /set notifyudp for more information..');
        return;
    }
    if ($port < 1024 || $port > 65535) {
        Irssi::print('NotifyUDP: Invalid port, must be 1024 <= port <= 65535, resetting and ignoring.');
        Irssi::settings_set_int('notifyudp_port', 0);
        return;
    }
    $sock = new IO::Socket::INET(
        PeerAddr => $ip,
        PeerPort => $port,
        Proto => 'udp',
        Timeout => 1
    );
    Irssi::print("NotifyUDP: IP $ip will be notified on port $port.");
}

my $last_time = 0;
sub notify {
    if ($sock) {
        my $now = time;
        my $notify_delay = 1.3;
        if (abs($now - $last_time) > $notify_delay) {
            $last_time = $now;
            $sock->send("M");
        }
    }
}
sub notify_if_hilighted {
    my ($dest, $text, $stripped) = @_;
    if ($dest->{level} & MSGLEVEL_HILIGHT) {
        notify();
    }
}

sub notify_stop {
    if ($sock) {
        Irssi::print("NotifyUDP: Stopping.");
        $sock->send("S");
        $sock = undef;
    } else {
        Irssi::print("NotifyUDP: not active.");
    }
}

sub cmd_notifyudp {
    my ($cmd) = @_;
    if ($cmd eq 'start') {
        notify_load();
    } elsif ($cmd eq 'stop') {
        notify_stop();
    } elsif ($cmd eq 'ping') {
        notify();
    } else {
        Irssi::print('NotifyUDP: Usage: /notifyudp [start|stop|ping]');
    }
}

Irssi::command_bind('notifyudp', 'cmd_notifyudp');

my @signals = (
# Uncomment the following to get notifs for every (channel) message
#'message public',
'message private',
'dcc request',

'message irc notice', # NickServ responses and such

# whenever the server dies
'server connected',
'server connect failed',
'server disconnected',

'message invite',
'message topic',
'message dcc',
'ctcp msg',
'ctcp reply',
);
Irssi::signal_add('print text', 'notify_if_hilighted');
foreach (@signals) {
    Irssi::signal_add($_, 'notify');
}

if (Irssi::settings_get_bool('notifyudp_auto_start')) {
    Irssi::print('NotifyUDP: automatic connection with the sound server is enabled.');
    notify_load();
} else {
    Irssi::print('NotifyUDP: automatic connection with the sound server is disabled.');
}

सर्वर

जब शुरू किया जाता है, तो यह सभी पतों पर सुनता है, पोर्ट 3533। यदि यह एक यूडीपी पैकेट "एम" प्राप्त करता है, तो यह /usr/share/sounds/KDE-Im-Irc-Event.oggउपयोग करता है paplay("पल्सएडियो प्ले")। प्राप्त करने पर S, यह सर्वर को क्विट करता है। चूंकि यह ओपन-सोर्स है, आप इसे हटाने के लिए स्वतंत्र हैं।

#!/usr/bin/env python
# udpsoundserver.py

"""Listen on a UDP port and play a sound when 'M' is received

Starts the server listening on UDP port PORT (3533 by default) on address HOST
(by default all addresses). Valid commands are:
M - play Music
S - Stop the server
"""
try:
    import socketserver
except ImportError:
    import SocketServer as socketserver
from os import system,getpid
import threading
import sys

# leave it empty to listen on all addresses
HOST = ""
PORT = 3533


class UDPSvr(socketserver.BaseRequestHandler):
    def handle(self):
        data = self.request[0]
        if sys.version >= '3':
            data = str(data, "ISO-8859-1")
        data = data.strip()
        if data == "M":
            ding.dong()
        elif data == "S":
            ding.die()

class Worker(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
        self.daemon = True
    def run(self):
        server.serve_forever();

class Handler(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
        self.daemon = True
        self.play = False
        self.must_die = False

    def run(self):
        self.event = threading.Event()
        while True:
            self.event.wait(1.)
            if self.event.isSet():
                if self.play:
                    print("Playing...")
                    system("paplay /usr/share/sounds/KDE-Im-Irc-Event.ogg")
                # no else if to allow shutdown signals 
                if self.must_die:
                    print("Shutting down...")
                    server.shutdown()
                    break
                self.play = False
                self.event.clear()

    def dong(self):
        self.play = True
        self.event.set()

    def die(self):
        self.must_die = True
        self.event.set()

def ca(num, x):
    print("Caught SIGINT, shutting down...")
    ding.die()

import signal
if __name__ == "__main__":
    print("My PID is: " + str(getpid()))

    if len(sys.argv) > 1:
        HOST = sys.argv[1]
    if len(sys.argv) > 2:
        PORT = int(sys.argv[2])

    print("Host: " + HOST)
    print("Port: " + str(PORT))
    server = socketserver.UDPServer((HOST, PORT), UDPSvr)

    ding = Handler()
    signal.signal(signal.SIGINT, ca)
    worker = Worker()
    ding.start()
    worker.start()
    # might not be the cleanest, but it allows Ctrl + C
    while ding.isAlive():
        ding.join(3600)

दूरस्थ सर्वर शुरू करने का क्रम बनता है:

screen -dm path/to/udpsoundserver.py
ssh -R 5355:localhost:5355

लॉग इन करने के बाद, मैं चलाता हूं:

screen -t irssi irssi

क्या आपको बाद में पुन: कनेक्ट करने की आवश्यकता है:

screen -r irssi

शुरू करने के बाद irssi, आपको होस्ट और पोर्ट सेट करने की आवश्यकता है:

/set notifyudp_ip_addr 127.0.0.1
/set notifyudp_port 5355

इसे स्टार्टअप पर अपने आप कनेक्ट करने के लिए:

/set notifyudp_auto_start 1

पहली बार, आपको मैन्युअल रूप से UDP प्रारंभ करने की आवश्यकता है क्योंकि यह अभी तक ऑटो शुरू नहीं हुआ था:

/notifyudp start

अधिसूचना का परीक्षण करने के लिए:

/notifyudp ping

करने के लिए:

  • डिस्कनेक्ट पर साउंडसेवर बंद करो
  • चैनल लंघन के लिए अनुमति दें

आपने कहा था कि टेक्स्ट इंडिकेटर की आवश्यकता नहीं थी - इस वाक्यांश का अर्थ है कि यह अच्छा होगा, लेकिन पसंदीदा विकल्प नहीं था। मैं संपादन के लिए माफी माँगता हूँ, और यदि आप चाहें तो इसे वापस ला सकते हैं।
jrg

कोई बात नहीं, विकल्प रखना अच्छा है। मेरा समाधान है जैसा कि मैंने कहा कि एक साथ हैक किया गया है, इसलिए आपका जवाब कोशिश करने लायक हो सकता है।
लेकेनस्टाइन

7

मैं यह व्याख्या के साथ करता हूं। मुझे यह युगों पहले मिला था।

यह एक विजेता की तरह काम करता है। मैं इसका उपयोग linux पर libnotify के साथ करता था (और तब भी करता हूं जब मैं linux मशीन पर होता हूं) लेकिन ज्यादातर समय मैं अभी macbook पर हूं, इसलिए मैं mac पर libnotify के प्रतिस्थापन के रूप में Growl का उपयोग करता हूं।

# todo: grap topic changes

use strict;
use vars qw($VERSION %IRSSI);

use Irssi;
$VERSION = '0.0.3';
%IRSSI = (
    authors     => 'Thorsten Leemhuis',
    contact     => 'fedora@leemhuis.info',
    name        => 'fnotify',
    description => 'Write a notification to a file that shows who is talking to you in which channel.',
    url         => 'http://www.leemhuis.info/files/fnotify/',
    license     => 'GNU General Public License',
    changed     => '$Date: 2007-01-13 12:00:00 +0100 (Sat, 13 Jan 2007) $'
);

#--------------------------------------------------------------------
# In parts based on knotify.pl 0.1.1 by Hugo Haas
# http://larve.net/people/hugo/2005/01/knotify.pl
# which is based on osd.pl 0.3.3 by Jeroen Coekaerts, Koenraad Heijlen
# http://www.irssi.org/scripts/scripts/osd.pl
#
# Other parts based on notify.pl from Luke Macken
# http://fedora.feedjack.org/user/918/
#
#--------------------------------------------------------------------

#--------------------------------------------------------------------
# Private message parsing
#--------------------------------------------------------------------

sub priv_msg {
    my ($server,$msg,$nick,$address,$target) = @_;
    filewrite($nick." " .$msg );
}

#--------------------------------------------------------------------
# Printing hilight's
#--------------------------------------------------------------------

sub hilight {
    my ($dest, $text, $stripped) = @_;
    if ($dest->{level} & MSGLEVEL_HILIGHT) {
    filewrite($dest->{target}. " " .$stripped );
    }
}

#--------------------------------------------------------------------
# The actual printing
#--------------------------------------------------------------------

sub filewrite {
    my ($text) = @_;
    # FIXME: there is probably a better way to get the irssi-dir...
        open(FILE,">>$ENV{HOME}/.irssi/fnotify");
    print FILE $text . "\n";
        close (FILE);
}

#--------------------------------------------------------------------
# Irssi::signal_add_last / Irssi::command_bind
#--------------------------------------------------------------------

Irssi::signal_add_last("message private", "priv_msg");
Irssi::signal_add_last("print text", "hilight");

#- end

इसे लोड करने के लिए irssi, निम्नलिखित चलाएं:

/load perl

/script load fnotify

फिर, हमें इसे रूट करने की आवश्यकता है libnotify। ऐसा करने के लिए, निम्नलिखित को शेल स्क्रिप्ट के रूप में सहेजें और लॉगिन पर चलाएँ:

# yes, we need a way to flush the file on disconnect; i don't know one
# yes, that's flush is not atomic (but good enough for me)
ssh remote.system.somewhere "tail -n 10 .irssi/fnotify ; : > .irssi/fnotify ; tail -f .irssi/fnotify " | sed -u 's/[<@&]//g' | while read heading message  do  notify-send -i gtk-dialog-info -t 300000 -- "${heading}" "${message}"; done # the sed -u 's/[<@&]//g' is needed as those characters might confuse  notify-send (FIXME: is that a bug or a feature?)

लंगड़ा सकल। ;) मैं एक नजर मार लूगां।
jrg

मैं बाद में इसकी जाँच करूँगा, इस पोस्ट को पोस्ट करने के एक दिन बाद मैंने एक पर्ल और पाइथन स्क्रिप्ट को एक साथ हैक किया जो मैं तब उपयोग कर रहा था।
लेकेनस्टाइन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.