2020-02-04 20:18:20 +00:00
|
|
|
"""Onionr - Private P2P Communication.
|
2019-08-08 03:45:18 +00:00
|
|
|
|
2020-02-04 20:18:20 +00:00
|
|
|
Desktop notification wrapper
|
|
|
|
"""
|
2020-02-17 12:13:57 +00:00
|
|
|
from subprocess import Popen
|
|
|
|
|
2020-02-04 20:18:20 +00:00
|
|
|
try:
|
|
|
|
import simplenotifications as simplenotify
|
|
|
|
except ImportError:
|
|
|
|
notifications_enabled = False
|
|
|
|
else:
|
|
|
|
notifications_enabled = True
|
|
|
|
|
2020-02-17 12:13:57 +00:00
|
|
|
from utils.readstatic import get_static_dir
|
2020-02-04 20:18:20 +00:00
|
|
|
import config
|
|
|
|
|
|
|
|
"""
|
2019-08-08 03:45:18 +00:00
|
|
|
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/>.
|
2020-02-04 20:18:20 +00:00
|
|
|
"""
|
2019-08-08 03:45:18 +00:00
|
|
|
|
2020-02-04 20:18:20 +00:00
|
|
|
if not config.get('general.show_notifications', True):
|
|
|
|
notifications_enabled = False
|
2019-09-29 20:52:34 +00:00
|
|
|
|
2020-02-17 12:13:57 +00:00
|
|
|
notification_sound_file = get_static_dir() + "sounds/notification1.mp3"
|
2019-09-29 20:52:34 +00:00
|
|
|
|
2019-08-08 03:45:18 +00:00
|
|
|
def notify(title: str = "Onionr", message: str = ""):
|
2020-02-04 20:18:20 +00:00
|
|
|
"""Cross platform method to show a notification."""
|
|
|
|
if not notifications_enabled:
|
|
|
|
return
|
2019-08-08 03:45:18 +00:00
|
|
|
simplenotify.notify(title, message)
|
2020-02-17 12:13:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
def notification_with_sound(sound = '', **kwargs):
|
|
|
|
try:
|
|
|
|
Popen(["mpv", notification_sound_file])
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
|
|
|
notify(**kwargs)
|