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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# telegram-send - Send messages and files over Telegram from the command-line
# Copyright (C) 2016-2023 Rahiel Kasim
#
# 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/>.
import argparse
import asyncio
import configparser
import re
import sys
from copy import deepcopy
from os import makedirs, remove
from os.path import dirname, exists, expanduser, join
from random import randint
from shutil import which
from typing import NamedTuple, Union
from subprocess import check_output
from warnings import warn
import colorama
import telegram
from telegram.constants import MessageLimit
from .version import __version__
from .utils import pre_format, split_message, get_config_path, markup
try:
import readline
except ImportError:
pass
global_config = "/etc/telegram-send.conf"
def main():
asyncio.run(run())
async def run():
colorama.init()
parser = argparse.ArgumentParser(description="Send messages and files over Telegram.",
epilog="Homepage: https://github.com/rahiel/telegram-send")
parser.add_argument("message", help="message(s) to send", nargs="*")
parser.add_argument("--format", default="text", dest="parse_mode", choices=["text", "markdown", "html"],
help="How to format the message(s). Choose from 'text', 'markdown', or 'html'")
parser.add_argument("--stdin", help="Send text from stdin.", action="store_true")
parser.add_argument("--pre", help="Send preformatted fixed-width (monospace) text.", action="store_true")
parser.add_argument("--disable-web-page-preview", help="disable link previews in the message(s)",
action="store_true")
parser.add_argument("--silent", help="send silently, user will receive a notification without sound",
action="store_true")
parser.add_argument("-c", "--configure", help="configure %(prog)s", action="store_true")
parser.add_argument("--configure-channel", help="configure %(prog)s for a channel", action="store_true")
parser.add_argument("--configure-group", help="configure %(prog)s for a group", action="store_true")
parser.add_argument("-f", "--file", help="send file(s)", nargs="+", type=argparse.FileType("rb"))
parser.add_argument("-i", "--image", help="send image(s)", nargs="+", type=argparse.FileType("rb"))
parser.add_argument("-s", "--sticker", help="send stickers(s)", nargs="+", type=argparse.FileType("rb"))
parser.add_argument("--animation", help="send animation(s) (GIF or soundless H.264/MPEG-4 AVC video)",
nargs="+", type=argparse.FileType("rb"))
parser.add_argument("--video", help="send video(s)", nargs="+", type=argparse.FileType("rb"))
parser.add_argument("--audio", help="send audio(s)", nargs="+", type=argparse.FileType("rb"))
parser.add_argument("-l", "--location",
help="send location(s) via latitude and longitude (separated by whitespace or a comma)",
nargs="+")
parser.add_argument("--caption", help="caption for image(s)", nargs="+")
parser.add_argument("--showids", help="show message ids, used to delete messages after they're sent",
action="store_true")
parser.add_argument("-d", "--delete", metavar="id",
help="delete sent messages by id (only last 48h), see --showids",
nargs="+", type=int)
parser.add_argument("--config", help="specify configuration file", type=str, dest="conf", action="append")
parser.add_argument("-g", "--global-config", help="Use the global configuration at /etc/telegram-send.conf",
action="store_true")
parser.add_argument("--file-manager", help="Integrate %(prog)s in the file manager", action="store_true")
parser.add_argument("--clean", help="Clean %(prog)s configuration files.", action="store_true")
parser.add_argument("--timeout", help="Set the read timeout for network operations. (in seconds)",
type=float, default=30., action="store")
parser.add_argument("--version", action="version", version="%(prog)s {}".format(__version__))
args = parser.parse_args()
if args.global_config:
conf = [global_config]
elif args.conf is None:
conf = [None]
else:
conf = args.conf
if args.configure:
return await configure(conf[0], fm_integration=True)
elif args.configure_channel:
return await configure(conf[0], channel=True)
elif args.configure_group:
return await configure(conf[0], group=True)
elif args.file_manager:
if not sys.platform.startswith("win32"):
return integrate_file_manager()
else:
print(markup("File manager integration is unavailable on Windows.", "red"))
sys.exit(1)
elif args.clean:
return clean()
if args.parse_mode == "markdown":
# Use the improved MarkdownV2 format by default
args.parse_mode = telegram.constants.ParseMode.MARKDOWN_V2
if args.stdin:
message = sys.stdin.read()
if len(message) == 0:
sys.exit(0)
args.message = [message] + args.message
try:
await delete(args.delete, conf=conf[0])
message_ids = []
for c in conf:
message_ids += await send(
messages=args.message,
conf=c,
parse_mode=args.parse_mode,
pre=args.pre,
silent=args.silent,
disable_web_page_preview=args.disable_web_page_preview,
files=args.file,
images=args.image,
stickers=args.sticker,
animations=args.animation,
videos=args.video,
audios=args.audio,
captions=args.caption,
locations=args.location,
timeout=args.timeout
)
if args.showids and message_ids:
smessage_ids = [str(m) for m in message_ids]
print("message_ids " + " ".join(smessage_ids))
except ConfigError as e:
print(markup(str(e), "red"))
cmd = "telegram-send --configure"
if args.global_config:
cmd = "sudo " + cmd + " --global-config"
print("Please run: " + markup(cmd, "bold"))
sys.exit(1)
except telegram.error.NetworkError as e:
if "timed out" in str(e).lower():
print(markup("Error: Connection timed out", "red"))
print("Please run with a longer timeout.\n"
"Try with the option: " + markup("--timeout {}".format(args.timeout + 10), "bold"))
sys.exit(1)
else:
raise(e)
async def send(*,
messages=None, files=None, images=None, stickers=None, animations=None, videos=None, audios=None,
captions=None, locations=None, conf=None, parse_mode=None, pre=False, silent=False,
disable_web_page_preview=False, timeout=30):
"""Send data over Telegram. All arguments are optional.
Always use this function with explicit keyword arguments. So
`send(messages=["Hello!"])` instead of `send(["Hello!"])`.
The `file` type is the [file object][] returned by the `open()` function.
To send an image/file you open it in binary mode:
``` python
import telegram_send
with open("image.jpg", "rb") as f:
telegram_send.send(images=[f])
```
[file object]: https://docs.python.org/3/glossary.html#term-file-object
# Arguments
conf (str): Path of configuration file to use. Will use the default config if not specified.
`~` expands to user's home directory.
messages (List[str]): The messages to send.
parse_mode (str): Specifies formatting of messages, one of `["text", "markdown", "html"]`.
pre (bool): Send messages as preformatted fixed width (monospace) text.
files (List[file]): The files to send.
images (List[file]): The images to send.
stickers (List[file]): The stickers to send.
animations (List[file]): The animations to send.
videos (List[file]): The videos to send.
audios (List[file]): The audios to send.
captions (List[str]): The captions to send with the images/files/animations/videos or audios.
locations (List[str]): The locations to send. Locations are strings containing the latitude and longitude
separated by whitespace or a comma.
silent (bool): Send silently without sound.
disable_web_page_preview (bool): Disables web page previews for all links in the messages.
timeout (int|float): The read timeout for network connections in seconds.
"""
settings = get_config_settings(conf)
token = settings.token
chat_id = settings.chat_id
bot = telegram.Bot(token)
# We let the user specify "text" as a parse mode to be more explicit about
# the lack of formatting applied to the message, but "text" isn't a supported
# parse_mode in python-telegram-bot. Instead, set the parse_mode to None
# in this case.
if parse_mode == "text":
parse_mode = None
# collect all message ids sent during the current invocation
message_ids = []
kwargs = {
"chat_id": chat_id,
"disable_notification": silent,
"read_timeout": timeout,
}
if messages:
async def send_message(message, parse_mode):
if pre:
parse_mode = "html"
message = pre_format(message)
return await bot.send_message(
text=message,
parse_mode=parse_mode,
disable_web_page_preview=disable_web_page_preview,
**kwargs
)
for m in messages:
if len(m) > MessageLimit.MAX_TEXT_LENGTH:
warn(markup(
f"Message longer than MAX_MESSAGE_LENGTH={MessageLimit.MAX_TEXT_LENGTH}, splitting into smaller messages.",
"red"))
ms = split_message(m, MessageLimit.MAX_TEXT_LENGTH)
for m in ms:
message_ids += [(await send_message(m, parse_mode))["message_id"]]
elif len(m) == 0:
continue
else:
message_ids += [(await send_message(m, parse_mode))["message_id"]]
def make_captions(items, captions):
# make captions equal length when not all images/files have captions
captions += [None] * (len(items) - len(captions))
return zip(items, captions)
# kwargs for send methods with caption support
kwargs_caption = deepcopy(kwargs)
kwargs_caption["parse_mode"] = parse_mode
if files:
if captions:
for (f, c) in make_captions(files, captions):
message_ids += [await bot.send_document(document=f, caption=c, **kwargs_caption)]
else:
for f in files:
message_ids += [await bot.send_document(document=f, **kwargs)]
if images:
if captions:
for (i, c) in make_captions(images, captions):
message_ids += [await bot.send_photo(photo=i, caption=c, **kwargs_caption)]
else:
for i in images:
message_ids += [await bot.send_photo(photo=i, **kwargs)]
if stickers:
for i in stickers:
message_ids += [await bot.send_sticker(sticker=i, **kwargs)]
if animations:
if captions:
for (a, c) in make_captions(animations, captions):
message_ids += [await bot.send_animation(animation=a, caption=c, **kwargs_caption)]
else:
for a in animations:
message_ids += [await bot.send_animation(animation=a, **kwargs)]
if videos:
if captions:
for (v, c) in make_captions(videos, captions):
message_ids += [await bot.send_video(video=v, caption=c, supports_streaming=True, **kwargs_caption)]
else:
for v in videos:
message_ids += [await bot.send_video(video=v, supports_streaming=True, **kwargs)]
if audios:
if captions:
for (a, c) in make_captions(audios, captions):
message_ids += [await bot.send_audio(audio=a, caption=c, **kwargs_caption)]
else:
for a in audios:
message_ids += [await bot.send_audio(audio=a, **kwargs)]
if locations:
it = iter(locations)
for loc in it:
if "," in loc:
lat, lon = loc.split(",")
else:
lat = loc
lon = next(it)
message_ids += [await bot.send_location(latitude=float(lat),
longitude=float(lon),
**kwargs)]
return message_ids
async def delete(message_ids, conf=None, timeout=30):
"""Delete messages that have been sent before over Telegram. Restrictions given by Telegram API apply.
Note that Telegram restricts this to messages which have been sent during the last 48 hours.
https://python-telegram-bot.readthedocs.io/en/stable/telegram.bot.html#telegram.Bot.delete_message
# Arguments
message_ids (List[str]): The messages ids of all messages to be deleted.
conf (str): Path of configuration file to use. Will use the default config if not specified.
`~` expands to user's home directory.
timeout (int|float): The read timeout for network connections in seconds.
"""
settings = get_config_settings(conf)
token = settings.token
chat_id = settings.chat_id
bot = telegram.Bot(token)
if message_ids:
for m in message_ids:
try:
await bot.delete_message(chat_id=chat_id, message_id=m, read_timeout=timeout)
except telegram.TelegramError as e:
warn(markup(f"Deleting message with id={m} failed: {e}", "red"))
async def configure(conf, channel=False, group=False, fm_integration=False):
"""Guide user to set up the bot, saves configuration at `conf`.
# Arguments
conf (str): Path where to save the configuration file. May contain `~` for
user's home.
channel (Optional[bool]): Configure a channel.
group (Optional[bool]): Configure a group.
fm_integration (Optional[bool]): Setup file manager integration.
"""
conf = expanduser(conf) if conf else get_config_path()
prompt = "❯ " if not sys.platform.startswith("win32") else "> "
contact_url = "https://telegram.me/"
print("Talk with the {} on Telegram ({}), create a bot and insert the token"
.format(markup("BotFather", "cyan"), contact_url + "BotFather"))
try:
token = input(markup(prompt, "magenta")).strip()
except UnicodeEncodeError:
# some users can only display ASCII
prompt = "> "
token = input(markup(prompt, "magenta")).strip()
try:
bot = telegram.Bot(token)
bot_details = await bot.get_me()
bot_name = bot_details.username
except Exception as e:
print("Error: {}".format(e))
print(markup("Something went wrong, please try again.\n", "red"))
return await configure(conf, channel=channel, group=group, fm_integration=fm_integration)
print("Connected with {}.\n".format(markup(bot_name, "cyan")))
if channel:
print("Do you want to send to a {} or a {} channel? [pub/priv]"
.format(markup("public", "bold"), markup("private", "bold")))
channel_type = input(markup(prompt, "magenta")).strip()
if channel_type.startswith("pub"):
print(
"\nEnter your channel's public name or link: "
"\nExample: @username or https://t.me/username"
)
chat_id = input(markup(prompt, "magenta")).strip()
if "/" in chat_id:
chat_id = "@" + chat_id.split("/")[-1]
elif chat_id.startswith("@"):
pass
else:
chat_id = "@" + chat_id
else:
print(
"\nOpen https://web.telegram.org/?legacy=1#/im in your browser, sign in and open your private channel."
"\nNow copy the URL in the address bar and enter it here:"
"\nExample: https://web.telegram.org/?legacy=1#/im?p=c1498081025_17886896740758033425"
)
url = input(markup(prompt, "magenta")).strip()
match = re.match(r".+web\.(telegram|tlgr)\.org\/\?legacy=1#\/im\?p=c(?P<chat_id>\d+)_\d+", url)
chat_id = "-100" + match.group("chat_id")
authorized = False
while not authorized:
try:
await bot.send_chat_action(chat_id=chat_id, action="typing")
authorized = True
except (telegram.error.Forbidden, telegram.error.BadRequest):
# Telegram returns a BadRequest when a non-admin bot tries to send to a private channel
input("Please add {} as administrator to your channel and press Enter"
.format(markup(bot_name, "cyan")))
print(markup("\nCongratulations! telegram-send can now post to your channel!", "green"))
else:
password = "".join([str(randint(0, 9)) for _ in range(5)])
bot_url = contact_url + bot_name
fancy_bot_name = markup(bot_name, "cyan")
if group:
password = "/{}@{}".format(password, bot_name)
print("Please add {} to your group\nand send the following message to the group: {}\n"
.format(fancy_bot_name, markup(password, "bold")))
else:
print("Please add {} on Telegram ({})\nand send it the password: {}\n"
.format(fancy_bot_name, bot_url, markup(password, "bold")))
update, update_id = None, None
async def get_user():
updates = await bot.get_updates(offset=update_id, read_timeout=10)
for update in updates:
if update.message:
if update.message.text == password:
return update, None
if len(updates) > 0:
return None, updates[-1].update_id + 1
else:
return None, None
while update is None:
try:
update, update_id = await get_user()
except Exception as e:
print("Error! {}".format(e))
chat_id = update.message.chat_id
user = update.message.from_user.username or update.message.from_user.first_name
m = ("Congratulations {}! ".format(user), "\ntelegram-send is now ready for use!")
ball = "🎊"
print(markup("".join(m), "green"))
await bot.send_message(chat_id=chat_id, text=ball + " " + m[0] + ball + m[1])
config = configparser.ConfigParser()
config["telegram"] = {"TOKEN": token, "chat_id": chat_id}
conf_dir = dirname(conf)
if conf_dir:
makedirs(conf_dir, exist_ok=True)
with open(conf, "w") as f:
config.write(f)
if fm_integration:
if not sys.platform.startswith("win32"):
return integrate_file_manager()
def integrate_file_manager(clean=False):
desktop = (
"[{}]\n"
"Version=1.0\n"
"Type=Application\n"
"Encoding=UTF-8\n"
"Exec=telegram-send --file %F\n"
"Icon=telegram\n"
"Name={}\n"
"Selection=any\n"
"Extensions=nodirs;\n"
"Quote=double\n"
)
name = "telegram-send"
script = """#!/bin/sh
echo "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" | sed 's/ /\\\\ /g' | xargs telegram-send -f
"""
file_managers = [
("thunar", "~/.local/share/Thunar/sendto/", "Desktop Entry", "Telegram", ".desktop"),
("nemo", "~/.local/share/nemo/actions/", "Nemo Action", "Send to Telegram", ".nemo_action"),
("nautilus", "~/.local/share/nautilus/scripts/", "script", "", ""),
]
for (fm, loc, section, label, ext) in file_managers:
loc = expanduser(loc)
filename = join(loc, name + ext)
if not clean:
if which(fm):
makedirs(loc, exist_ok=True)
with open(filename, "w") as f:
if section == "script":
f.write(script)
else:
f.write(desktop.format(section, label))
if section == "script":
check_output(["chmod", "+x", filename])
else:
if exists(filename):
remove(filename)
def clean():
integrate_file_manager(clean=True)
conf = get_config_path()
if exists(conf):
remove(conf)
if exists(global_config):
try:
remove(global_config)
except OSError:
print(markup("Can't delete /etc/telegram-send.conf", "red"))
print("Please run: " + markup("sudo telegram-send --clean", "bold"))
sys.exit(1)
class ConfigError(Exception):
pass
class Settings(NamedTuple):
token: str
chat_id: Union[int, str]
def get_config_settings(conf=None) -> Settings:
conf = expanduser(conf) if conf else get_config_path()
config = configparser.ConfigParser()
if not config.read(conf) or not config.has_section("telegram"):
raise ConfigError("Config not found")
missing_options = set(["token", "chat_id"]) - set(config.options("telegram"))
if len(missing_options) > 0:
raise ConfigError("Missing options in config: {}".format(", ".join(missing_options)))
token = config.get("telegram", "token")
chat_id = config.get("telegram", "chat_id")
if chat_id.isdigit():
chat_id = int(chat_id)
return Settings(token=token, chat_id=chat_id)
if __name__ == "__main__":
main()
|