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
|
#!/usr/bin/env python3
# localslackirc
# Copyright (C) 2023-2024 Salvo "LtWorf" Tomaselli
#
# localslackirc 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/>.
#
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
import argparse
import os
import sys
import socket
def lsi_write():
parser = argparse.ArgumentParser(
description='Send a message to a slack user or channel.'
)
parser.add_argument('--control-socket', type=str, action='store', dest='control_socket', default=None,
help='Path to the localslackirc unix control socket')
parser.add_argument(type=str, action='store', dest='destination',
help='Destination user or channel')
args = parser.parse_args()
control_socket = args.control_socket or find_socket()
if not control_socket:
sys.exit('Please specify the path to the socket')
while data := sys.stdin.readline():
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
s.connect(control_socket)
s.send(b'write\n')
s.send(args.destination.encode('utf8') + b'\n')
s.send(data.encode('utf8'))
s.shutdown(socket.SHUT_WR)
def lsi_send():
parser = argparse.ArgumentParser(
description='Send a file to a slack user or channel.'
)
parser.add_argument('-f', '--filename', type=str, action='store', dest='filename',
help='Name to give to the file', default='filename')
parser.add_argument('--control-socket', type=str, action='store', dest='control_socket', default=None,
help='Path to the localslackirc unix control socket')
parser.add_argument('-F', '--file', type=str, action='store', dest='source',
help='Path of the file to send. If not specified stdin is used', default=None)
parser.add_argument(type=str, action='store', dest='destination',
help='Destination user or channel')
args = parser.parse_args()
if args.source:
args.filename = args.source.split('/')[-1]
control_socket = args.control_socket or find_socket()
if not control_socket:
sys.exit('Please specify the path to the socket')
s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
s.connect(control_socket)
assert '\n' not in args.destination
assert '\n' not in args.filename
s.send(b'sendfile\n')
s.send(args.destination.encode('utf8') + b'\n')
s.send(args.filename.encode('utf8') + b'\n')
if args.source:
with open(args.source, "rb") as f:
while chunk := f.read(4096):
s.send(chunk)
else:
while chunk := sys.stdin.buffer.read(1024):
s.send(chunk)
s.shutdown(socket.SHUT_WR)
response = s.recv(1024).decode('utf8')
print(response)
if response != 'ok':
sys.exit(1)
def main() -> None:
cmdname = sys.argv[0].split('/')[-1]
if cmdname == 'lsi-send':
lsi_send()
elif cmdname == 'lsi-write':
lsi_write()
def find_socket() -> None | str:
'''
Returns the control socket of localslackirc or raises
It looks in the runtime directory used in the .service file
and looks for sockets in that directory.
'''
RUNDIR = '/run/localslackirc/'
candidates = []
try:
for s in os.listdir(RUNDIR):
if os.access(RUNDIR + s, os.W_OK | os.R_OK | os.X_OK):
candidates.append(RUNDIR + s)
if len(candidates) == 1:
return candidates[0]
except Exception:
pass
return None
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
pass
|