mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
79 lines
2.4 KiB
Python
79 lines
2.4 KiB
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/>.
|
|
#
|
|
|
|
"""
|
|
Plinth module for configuring Shadowsocks.
|
|
"""
|
|
|
|
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from plinth.forms import ServiceForm
|
|
from plinth.utils import format_lazy
|
|
|
|
METHODS = [
|
|
('chacha20-ietf-poly1305',
|
|
format_lazy('chacha20-ietf-poly1305 ({})', _('Recommended'))),
|
|
('aes-256-gcm', format_lazy('aes-256-gcm ({})', _('Recommended'))),
|
|
('aes-192-gcm', 'aes-192-gcm'),
|
|
('aes-128-gcm', 'aes-128-gcm'),
|
|
('aes-128-ctr', 'aes-128-ctr'),
|
|
('aes-192-ctr', 'aes-192-ctr'),
|
|
('aes-256-ctr', 'aes-256-ctr'),
|
|
('aes-128-cfb', 'aes-128-cfb'),
|
|
('aes-192-cfb', 'aes-192-cfb'),
|
|
('aes-256-cfb', 'aes-256-cfb'),
|
|
('camellia-128-cfb', 'camellia-128-cfb'),
|
|
('camellia-192-cfb', 'camellia-192-cfb'),
|
|
('camellia-256-cfb', 'camellia-256-cfb'),
|
|
('chacha20-ietf', 'chacha20-ietf')
|
|
]
|
|
|
|
|
|
class TrimmedCharField(forms.CharField):
|
|
"""Trim the contents of a CharField"""
|
|
|
|
def clean(self, value):
|
|
"""Clean and validate the field value"""
|
|
if value:
|
|
value = value.strip()
|
|
|
|
return super(TrimmedCharField, self).clean(value)
|
|
|
|
|
|
class ShadowsocksForm(ServiceForm):
|
|
"""Shadowsocks configuration form"""
|
|
server = TrimmedCharField(
|
|
label=_('Server'),
|
|
help_text=_('Server hostname or IP address'))
|
|
|
|
server_port = forms.IntegerField(
|
|
label=_('Server port'),
|
|
min_value=0,
|
|
max_value=65535,
|
|
help_text=_('Server port number'))
|
|
|
|
password = forms.CharField(
|
|
label=_('Password'),
|
|
help_text=_('Password used to encrypt data. '
|
|
'Must match server password.'))
|
|
|
|
method = forms.ChoiceField(
|
|
label=_('Method'),
|
|
choices=METHODS,
|
|
help_text=_('Encryption method. Must match setting on server.'))
|