56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
"""Onionr - Private P2P Communication.
|
|
|
|
Desktop notification wrapper
|
|
"""
|
|
from subprocess import Popen
|
|
|
|
try:
|
|
import simplenotifications as simplenotify
|
|
except ImportError:
|
|
notifications_enabled = False
|
|
else:
|
|
notifications_enabled = True
|
|
|
|
from utils.readstatic import get_static_dir
|
|
import config
|
|
from onionrplugins.onionrevents import event as plugin_api_event
|
|
"""
|
|
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/>.
|
|
"""
|
|
|
|
if not config.get('general.show_notifications', True):
|
|
notifications_enabled = False
|
|
|
|
notification_sound_file = get_static_dir() + "sounds/notification1.mp3"
|
|
|
|
|
|
def notify(title: str = "Onionr", message: str = ""):
|
|
"""Cross platform method to show a notification."""
|
|
if not notifications_enabled:
|
|
return
|
|
plugin_api_event("notification", data={"title": title, "message": message})
|
|
simplenotify.notify(title, message)
|
|
|
|
|
|
def notification_with_sound(sound='', **kwargs):
|
|
if not notifications_enabled:
|
|
return
|
|
if not sound:
|
|
sound = notification_sound_file
|
|
try:
|
|
Popen(["mpv", sound])
|
|
except FileNotFoundError:
|
|
pass
|
|
notify(**kwargs)
|