minetest: New module for minetest server

This commit is contained in:
James Valleroy 2016-02-06 19:16:40 -05:00 committed by Sunil Mohan Adapa
parent 7a139b7927
commit 363e071bff
No known key found for this signature in database
GPG Key ID: 36C361440C9BC971
9 changed files with 328 additions and 0 deletions

59
actions/minetest Executable file
View File

@ -0,0 +1,59 @@
#!/usr/bin/python3
#
# 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 Minetest server.
"""
import argparse
from plinth import action_utils
def parse_arguments():
"""Return parsed command line arguments as dictionary."""
parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers(dest='subcommand', help='Sub command')
subparsers.add_parser('enable', help='Enable Minetest server')
subparsers.add_parser('disable', help='Disable Minetest server')
return parser.parse_args()
def subcommand_enable(_):
"""Enable and start server."""
action_utils.service_enable('minetest-server')
def subcommand_disable(_):
"""Disable and stop server."""
action_utils.service_disable('minetest-server')
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()

View File

@ -0,0 +1 @@
plinth.modules.minetest

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<service>
<short>Minetest Server</short>
<description>Minetest is a multiplayer infinite-world block sandbox.</description>
<port protocol="udp" port="30000"/>
</service>

View File

@ -0,0 +1,61 @@
#
# 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/>.
#
"""
Plinth module for minetest.
"""
from django.utils.translation import ugettext_lazy as _
from plinth import action_utils
from plinth import cfg
from plinth import service as service_module
depends = ['plinth.modules.apps']
service = None
def init():
"""Initialize the minetest module."""
menu = cfg.main_menu.get('apps:index')
menu.add_urlname(_('Block Sandbox (Minetest)'), 'glyphicon-th-large',
'minetest:index', 325)
global service
service = service_module.Service(
'minetest-plinth', _('Minetest Server'),
is_external=True, enabled=is_enabled())
def is_enabled():
"""Return whether the service is enabled."""
return action_utils.service_is_enabled('minetest-server')
def is_running():
"""Return whether the service is running."""
return action_utils.service_is_running('minetest-server')
def diagnose():
"""Run diagnostics and return the results."""
results = []
results.append(action_utils.diagnose_port_listening(30000, 'udp4'))
return results

View File

@ -0,0 +1,30 @@
#
# 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/>.
#
"""
Forms for the minetest module.
"""
from django import forms
from django.utils.translation import ugettext_lazy as _
class MinetestForm(forms.Form):
"""Minetest configuration form."""
enabled = forms.BooleanField(
label=_('Enable Minetest server'),
required=False)

View File

@ -0,0 +1,64 @@
{% extends "base.html" %}
{% comment %}
#
# 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/>.
#
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block content %}
<h2>{% trans "Block Sandbox (Minetest)" %}</h2>
<p>
{% blocktrans trimmed %}
Minetest is a multiplayer infinite-world block sandbox. This module
enables the Minetest server to be run on this {{ box_name }}, on the
default port (30000). To connect to the server, a
<a href="http://www.minetest.net/downloads/">Minetest client</a>
is needed.
{% endblocktrans %}
</p>
<h3>{% trans "Status" %}</h3>
<p class="running-status-parent">
{% if status.is_running %}
<span class="running-status active"></span>
{% trans "Minetest server is running" %}
{% else %}
<span class="running-status inactive"></span>
{% trans "Minetest server is not running" %}
{% endif %}
</p>
{% include "diagnostics_button.html" with module="minetest" %}
<h3>{% trans "Configuration" %}</h3>
<form class="form" method="post">
{% csrf_token %}
{{ form|bootstrap }}
<input type="submit" class="btn btn-primary"
value="{% trans "Update setup" %}"/>
</form>
{% endblock %}

View File

@ -0,0 +1,29 @@
#
# 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/>.
#
"""
URLs for the minetest module.
"""
from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^apps/minetest/$', views.index, name='index'),
]

View File

@ -0,0 +1,78 @@
#
# 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/>.
#
"""
Views for the minetest module.
"""
from django.contrib import messages
from django.template.response import TemplateResponse
from django.utils.translation import ugettext as _
from .forms import MinetestForm
from plinth import actions
from plinth import package
from plinth.modules import minetest
def on_install():
"""Notify that the service is now enabled."""
minetest.service.notify_enabled(None, True)
@package.required(['minetest-server'], on_install=on_install)
def index(request):
"""Serve configuration page."""
status = get_status()
form = None
if request.method == 'POST':
form = MinetestForm(request.POST, prefix='minetest')
if form.is_valid():
_apply_changes(request, status, form.cleaned_data)
status = get_status()
form = MinetestForm(initial=status, prefix='minetest')
else:
form = MinetestForm(initial=status, prefix='minetest')
return TemplateResponse(request, 'minetest.html',
{'title': _('Block Sandbox (Minetest)'),
'status': status,
'form': form})
def get_status():
"""Get the current service status."""
return {'enabled': minetest.is_enabled(),
'is_running': minetest.is_running()}
def _apply_changes(request, old_status, new_status):
"""Apply the changes."""
modified = False
if old_status['enabled'] != new_status['enabled']:
sub_command = 'enable' if new_status['enabled'] else 'disable'
actions.superuser_run('minetest', [sub_command])
minetest.service.notify_enabled(None, new_status['enabled'])
modified = True
if modified:
messages.success(request, _('Configuration updated'))
else:
messages.info(request, _('Setting unchanged'))