Sunil Mohan Adapa dea4af17fb
Rename Plinth to FreedomBox in license headers
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2018-02-16 20:10:09 -05:00

163 lines
6.0 KiB
Python

#
# This file is part of FreedomBox.
#
# 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 snapshot module.
"""
import json
from django.contrib import messages
from django.shortcuts import redirect
from django.template.response import TemplateResponse
from django.urls import reverse
from django.utils.translation import ugettext as _
from plinth import actions
from plinth.errors import ActionError
from plinth.modules import snapshot as snapshot_module
from plinth.utils import yes_or_no
from . import get_configuration
from .forms import SnapshotForm
def index(request):
"""Show snapshot list."""
status = get_configuration()
if request.method == 'POST':
form = SnapshotForm(request.POST)
if 'create' in request.POST:
actions.superuser_run('snapshot', ['create'])
messages.success(request, _('Created snapshot.'))
if 'update' in request.POST and form.is_valid():
update_configuration(request, status, form.cleaned_data)
status = get_configuration()
form = SnapshotForm(initial=status)
else:
form = SnapshotForm(initial=status)
output = actions.superuser_run('snapshot', ['list'])
snapshots = json.loads(output)
has_deletable_snapshots = any(
[snapshot for snapshot in snapshots[1:] if not snapshot['is_default']])
return TemplateResponse(
request, 'snapshot.html', {
'title': snapshot_module.name,
'description': snapshot_module.description,
'snapshots': snapshots,
'has_deletable_snapshots': has_deletable_snapshots,
'form': form
})
def update_configuration(request, old_status, new_status):
"""Update configuration of snapshots."""
def update_key_configuration(key, stamp, threshold):
if old_status[key] != new_status[key]:
actions.superuser_run(
'snapshot', ['configure', stamp.format(threshold)])
try:
update_key_configuration(
'enable_timeline_snapshots', 'TIMELINE_CREATE={}',
yes_or_no(new_status['enable_timeline_snapshots']))
update_key_configuration('hourly_limit', 'TIMELINE_LIMIT_HOURLY={}',
new_status['hourly_limit'])
update_key_configuration('daily_limit', 'TIMELINE_LIMIT_DAILY={}',
new_status['daily_limit'])
update_key_configuration('weekly_limit', 'TIMELINE_LIMIT_WEEKLY={}',
new_status['weekly_limit'])
update_key_configuration('monthly_limit', 'TIMELINE_LIMIT_MONTHLY={}',
new_status['monthly_limit'])
update_key_configuration('yearly_limit', 'TIMELINE_LIMIT_YEARLY={}',
new_status['yearly_limit'])
update_key_configuration('number_min_age', 'NUMBER_MIN_AGE={}',
int(new_status['number_min_age']) * 86400)
actions.superuser_run('snapshot', ['configure', 'NUMBER_LIMIT=0'])
actions.superuser_run('snapshot',
['configure', 'NUMBER_LIMIT_IMPORTANT=4-10'])
messages.success(request, _('Storage snapshots configuration updated'))
except ActionError as exception:
messages.error(request,
_('Action error: {0} [{1}] [{2}]').format(
exception.args[0], exception.args[1],
exception.args[2]))
def delete(request, number):
"""Show confirmation to delete a snapshot."""
if request.method == 'POST':
actions.superuser_run('snapshot', ['delete', number])
messages.success(
request,
_('Deleted snapshot #{number}.').format(number=number))
return redirect(reverse('snapshot:index'))
output = actions.superuser_run('snapshot', ['list'])
snapshots = json.loads(output)
snapshot = next(s for s in snapshots if s['number'] == number)
return TemplateResponse(request, 'snapshot_delete.html', {
'title': _('Delete Snapshot'),
'snapshot': snapshot
})
def delete_all(request):
"""Show confirmation to delete all snapshots."""
if request.method == 'POST':
actions.superuser_run('snapshot', ['delete-all'])
messages.success(request, _('Deleted all snapshots.'))
return redirect(reverse('snapshot:index'))
output = actions.superuser_run('snapshot', ['list'])
snapshots = json.loads(output)
return TemplateResponse(request, 'snapshot_delete_all.html', {
'title': _('Delete Snapshots'),
'snapshots': snapshots[1:]
})
def rollback(request, number):
"""Show confirmation to rollback to a snapshot."""
if request.method == 'POST':
actions.superuser_run('snapshot', ['rollback', number])
messages.success(
request,
_('Rolled back to snapshot #{number}.').format(number=number))
messages.warning(
request,
_('The system must be restarted to complete the rollback.'))
return redirect(reverse('power:restart'))
output = actions.superuser_run('snapshot', ['list'])
snapshots = json.loads(output)
snapshot = None
for current_snapshot in snapshots:
if current_snapshot['number'] == number:
snapshot = current_snapshot
return TemplateResponse(request, 'snapshot_rollback.html', {
'title': _('Rollback to Snapshot'),
'snapshot': snapshot
})