SafeEyes/safeeyes/plugins/audiblealert/plugin.py

80 lines
2.3 KiB
Python
Raw Normal View History

2017-10-07 15:10:31 +02:00
#!/usr/bin/env python
# Safe Eyes is a utility to remind you to take break frequently
# to protect your eyes from eye strain.
# Copyright (C) 2017 Gobinath
# 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/>.
"""
Audible Alert plugin plays a sound after each breaks to notify the user that the break has end.
"""
import logging
2020-03-18 13:33:11 +01:00
from safeeyes import utility
2017-10-07 15:10:31 +02:00
context = None
2018-06-23 00:22:14 +02:00
pre_break_alert = False
post_break_alert = False
2018-06-23 00:22:14 +02:00
def play_sound(resource_name):
"""Play the audio resource.
Arguments:
resource_name {string} -- name of the wav file resource
"""
logging.info('Playing audible alert %s', resource_name)
try:
# Open the sound file
2020-03-18 13:33:11 +01:00
path = utility.get_resource_path(resource_name)
2018-06-23 00:22:14 +02:00
if path is None:
return
2020-03-18 13:33:11 +01:00
utility.execute_command('aplay', ['-q', path])
2018-06-23 00:22:14 +02:00
except BaseException:
logging.error('Failed to play audible alert %s', resource_name)
2017-10-07 15:10:31 +02:00
def init(ctx, safeeyes_config, plugin_config):
"""
Initialize the plugin.
"""
global context
2018-06-23 00:22:14 +02:00
global pre_break_alert
global post_break_alert
2017-10-07 15:10:31 +02:00
logging.debug('Initialize Audible Alert plugin')
context = ctx
2018-06-23 00:22:14 +02:00
pre_break_alert = plugin_config['pre_break_alert']
post_break_alert = plugin_config['post_break_alert']
2018-06-23 00:22:14 +02:00
def on_pre_break(break_obj):
"""Play the pre_break sound if the option is enabled.
Arguments:
break_obj {safeeyes.model.Break} -- the break object
"""
if pre_break_alert:
play_sound('on_pre_break.wav')
2017-10-07 15:10:31 +02:00
def on_stop_break():
"""
After the break, play the alert sound
"""
# Do not play if the break is skipped or postponed
if context['skipped'] or context['postponed'] or not post_break_alert:
2017-10-07 15:10:31 +02:00
return
2018-06-23 00:22:14 +02:00
play_sound('on_stop_break.wav')