2024-08-31 21:33:26 +00:00
|
|
|
# This file is part of SSHare.
|
|
|
|
#
|
|
|
|
# SSHare 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.
|
|
|
|
#
|
|
|
|
# SSHare 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
|
|
|
|
# SSHare. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2024-09-08 21:13:12 +00:00
|
|
|
from desktop_notifier import DesktopNotifierSync
|
2024-08-31 21:33:26 +00:00
|
|
|
|
2024-09-09 18:40:11 +00:00
|
|
|
from sshare.plugin.config import Flag
|
|
|
|
from sshare.plugin.config import NoDefault
|
2024-08-31 21:33:26 +00:00
|
|
|
|
2024-09-08 21:13:12 +00:00
|
|
|
plugin_type = "feedback"
|
2024-08-31 21:33:26 +00:00
|
|
|
|
2024-09-08 20:10:03 +00:00
|
|
|
activate = { "notify" }
|
2024-08-31 21:33:26 +00:00
|
|
|
args = {
|
2024-09-09 05:46:26 +00:00
|
|
|
"notify": Flag(help="Send a desktop notification"),
|
2024-08-31 21:33:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_notifier = DesktopNotifierSync()
|
|
|
|
|
2024-09-08 21:13:12 +00:00
|
|
|
def give_feedback(location):
|
2024-08-31 21:33:26 +00:00
|
|
|
_notifier.send(
|
|
|
|
title="SSHare - Upload Complete",
|
2024-09-08 21:13:12 +00:00
|
|
|
message=f"Uploaded to {location}",
|
2024-08-31 21:33:26 +00:00
|
|
|
)
|