Convert xmpp-register action to python.

This commit is contained in:
James Valleroy 2014-11-16 08:58:03 -05:00 committed by Sunil Mohan Adapa
parent e324aa040e
commit 2751a8e848
3 changed files with 30 additions and 20 deletions

View File

@ -34,6 +34,14 @@ def parse_arguments():
subparsers.add_parser('get-installed',
help='Get whether ejabberd is installed')
# Register a new user account
register = subparsers.add_parser('register',
help='Register a new user account')
register.add_argument('--username',
help='Username for the new user account')
register.add_argument('--password',
help='Password for the new user account')
return parser.parse_args()
@ -42,6 +50,24 @@ def subcommand_get_installed(_):
print('installed' if get_installed() else 'not installed')
def subcommand_register(arguments):
"""Register a new user account"""
if not get_installed():
print('Failed to register XMPP account: ejabberd is not installed.')
return
username = arguments.username
password = arguments.password
hostname = subprocess.check_output(['hostname'])
try:
output = subprocess.check_output(['ejabberdctl', 'register',
username, hostname, password])
print(output.decode())
except subprocess.CalledProcessError as e:
print('Failed to register XMPP account:', e.output.decode())
def get_installed():
"""Check if ejabberd is installed"""
with open('/dev/null', 'w') as file_handle:

View File

@ -1,19 +0,0 @@
#!/bin/sh
#
# 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/>.
#
ejabberdctl register "$1" `hostname` "$2" || echo "Failed to register XMPP account."

View File

@ -183,7 +183,10 @@ def register(request):
def _register_user(request, data):
"""Register a new XMPP user"""
output = actions.superuser_run(
'xmpp-register', [data['username'], data['password']])
'xmpp',
['register',
'--username', data['username'],
'--password', data['password']])
if 'successfully registered' in output:
messages.success(request, _('Registered account for %s') %