All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 54s
77 lines
2.7 KiB
Python
77 lines
2.7 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Really Simple BBS - a really simple BBS for ax.25 packet radio.
|
|
# Copyright (C) 2023 John Burwell <john@atatdotdot.com>
|
|
#
|
|
# 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 <https://www.gnu.org/licenses/>.
|
|
|
|
import logging
|
|
|
|
import sqlalchemy
|
|
import sqlalchemy.exc
|
|
|
|
from rsbbs import Console, Parser
|
|
from rsbbs.models import Message
|
|
|
|
|
|
class Plugin():
|
|
|
|
def __init__(self, api: Console) -> None:
|
|
self.api = api
|
|
self.init_parser(api.parser)
|
|
logging.info(f"plugin {__name__} loaded")
|
|
|
|
def init_parser(self, parser: Parser) -> None:
|
|
subparser = parser.subparsers.add_parser(
|
|
name='delete',
|
|
aliases=['d', 'k'],
|
|
help='Delete a message')
|
|
subparser.add_argument('number',
|
|
help='The number of the message to delete')
|
|
subparser.set_defaults(func=self.run)
|
|
|
|
def delete(self, number) -> None:
|
|
with self.api.controller.session() as session:
|
|
try:
|
|
statement = sqlalchemy.delete(Message).where(
|
|
sqlalchemy.and_(
|
|
Message.recipient == self.api.config.calling_station,
|
|
Message.id == number,
|
|
)).returning(Message)
|
|
result = session.execute(
|
|
statement,
|
|
execution_options={"prebuffer_rows": True})
|
|
session.commit()
|
|
results = result.all()
|
|
count = len(results)
|
|
if count > 0:
|
|
self.api.write_output(f"Deleted message #{number}")
|
|
logging.info(f"deleted message {number}")
|
|
else:
|
|
self.api.write_output("A message with that ID addressed "
|
|
"to you was not found.")
|
|
except sqlalchemy.exc.NoResultFound:
|
|
self.api.write_output("Message not found.")
|
|
except Exception as e:
|
|
logging.error(e)
|
|
|
|
def run(self, args) -> None:
|
|
"""Delete a message.
|
|
|
|
Arguments:
|
|
number -- the message number to delete
|
|
"""
|
|
if args.number:
|
|
self.delete(args.number)
|