Sunil Mohan Adapa 07e2c0ce14 Don't use actions to check if service is running
- To check whether a service is running does not require root
  privileges.  This can directly be done from a module without any
  action.

- Since actions are allowed to be run using sudo, introducing
  unnecessary sub-commands increases attack surface.

- Simple functions calls are unnecessarily being converted to command
  line invocations and involve parsing response.

- There is a lot of repeated code because of this that can be
  eliminated.

- To generalize this, we need to make all non-root system operations
  directly from module instead of delegating to action commands.
2015-07-19 19:54:13 -04:00

105 lines
2.9 KiB
Python
Executable File

#!/usr/bin/python3
# -*- mode: python -*-
#
# This file is part of Plinth.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""
Configuration helper for Mumble server
"""
import argparse
import subprocess
from plinth import action_utils
SERVICE_CONFIG = '/etc/default/mumble-server'
def parse_arguments():
"""Return parsed command line arguments as dictionary."""
parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers(dest='subcommand', help='Sub command')
# Get whether service is enabled
subparsers.add_parser('get-enabled',
help='Get whether Mumble service is enabled')
# Enable service
subparsers.add_parser('enable', help='Enable Mumble service')
# Disable service
subparsers.add_parser('disable', help='Disable Mumble service')
return parser.parse_args()
def subcommand_get_enabled(_):
"""Get whether service is enabled."""
try:
with open(SERVICE_CONFIG, 'r') as file:
for line in file:
if line.startswith('MURMUR_DAEMON_START'):
value = line.split('=')[1].strip()
print('yes' if int(value) else 'no')
return
except FileNotFoundError:
pass
print('no')
def subcommand_enable(_):
"""Start service."""
set_service_enable(enable=True)
action_utils.service_start('mumble-server')
def subcommand_disable(_):
"""Stop service."""
action_utils.service_stop('mumble-server')
set_service_enable(enable=False)
def set_service_enable(enable):
"""Enable/disable daemon; enable: boolean."""
newline = 'MURMUR_DAEMON_START=1\n' if enable \
else 'MURMUR_DAEMON_START=0\n'
with open(SERVICE_CONFIG, 'r') as file:
lines = file.readlines()
for index, line in enumerate(lines):
if line.startswith('MURMUR_DAEMON_START'):
lines[index] = newline
break
with open(SERVICE_CONFIG, 'w') as file:
file.writelines(lines)
def main():
"""Parse arguments and perform all duties."""
arguments = parse_arguments()
subcommand = arguments.subcommand.replace('-', '_')
subcommand_method = globals()['subcommand_' + subcommand]
subcommand_method(arguments)
if __name__ == '__main__':
main()