Add database CLI (#15)
Closes #12 Co-authored-by: Andrew Wang <a268wang@csclub.uwaterloo.ca> Co-authored-by: Max Erenberg <merenber@csclub.uwaterloo.ca> Reviewed-on: #15 Co-authored-by: Andrew Wang <a268wang@localhost> Co-committed-by: Andrew Wang <a268wang@localhost>pull/20/head
parent
cb6243c3e2
commit
33323fd112
@ -0,0 +1,104 @@ |
||||
import os |
||||
from typing import Dict |
||||
|
||||
import click |
||||
from zope import component |
||||
|
||||
from ..utils import http_post, http_get, http_delete |
||||
from .utils import handle_sync_response, check_file_path, check_if_in_development |
||||
from ceo_common.interfaces import IConfig |
||||
|
||||
|
||||
def db_cli_response(filename: str, user_dict: Dict, password: str, db_type: str, op: str): |
||||
cfg_srv = component.getUtility(IConfig) |
||||
db_host = cfg_srv.get(f'{db_type}_host') |
||||
username = user_dict['uid'] |
||||
if db_type == 'mysql': |
||||
db_type_name = 'MySQL' |
||||
db_cli_local_cmd = f'mysql {username}' |
||||
db_cli_cmd = f'mysql {username} -h {db_host} -u {username} -p' |
||||
else: |
||||
db_type_name = 'PostgreSQL' |
||||
db_cli_local_cmd = f'psql {username}' |
||||
db_cli_cmd = f'psql -d {username} -h {db_host} -U {username} -W' |
||||
username = user_dict['uid'] |
||||
info = f"""{db_type_name} Database Information for {username} |
||||
|
||||
Your new {db_type_name} database was created. To connect, use the following options: |
||||
|
||||
Database: {username} |
||||
Username: {username} |
||||
Password: {password} |
||||
Host: {db_host} |
||||
|
||||
On {db_host} to connect using the {db_type_name} command-line client use |
||||
|
||||
{db_cli_local_cmd} |
||||
|
||||
From other CSC machines you can connect using |
||||
|
||||
{db_cli_cmd} |
||||
""" |
||||
wrote_to_file = False |
||||
try: |
||||
# TODO: use phosphoric-acid to write to file (phosphoric-acid makes |
||||
# internal API call to caffeine) |
||||
with click.open_file(filename, "w") as f: |
||||
f.write(info) |
||||
os.chown(filename, user_dict['uid_number'], user_dict['gid_number']) |
||||
os.chmod(filename, 0o640) |
||||
wrote_to_file = True |
||||
except PermissionError: |
||||
pass |
||||
if op == 'create': |
||||
click.echo(f'{db_type_name} database created.') |
||||
click.echo(f'''Connection Information: |
||||
|
||||
Database: {username} |
||||
Username: {username} |
||||
Password: {password} |
||||
Host: {db_host}''') |
||||
if wrote_to_file: |
||||
click.echo(f"\nThese settings have been written to {filename}.") |
||||
else: |
||||
click.echo(f"\nWe were unable to write these settings to {filename}.") |
||||
|
||||
|
||||
def create(username: str, db_type: str): |
||||
db_type_name = 'MySQL' if db_type == 'mysql' else 'PostgreSQL' |
||||
resp = http_get(f'/api/members/{username}') |
||||
user_dict = handle_sync_response(resp) |
||||
click.confirm(f'Are you sure you want to create a {db_type_name} database for {username}?', abort=True) |
||||
|
||||
info_file_path = os.path.join(user_dict['home_directory'], f"ceo-{db_type}-info") |
||||
check_file_path(info_file_path) |
||||
|
||||
resp = http_post(f'/api/db/{db_type}/{username}') |
||||
result = handle_sync_response(resp) |
||||
password = result['password'] |
||||
|
||||
db_cli_response(info_file_path, user_dict, password, db_type, 'create') |
||||
|
||||
|
||||
def pwreset(username: str, db_type: str): |
||||
db_type_name = 'MySQL' if db_type == 'mysql' else 'PostgreSQL' |
||||
resp = http_get(f'/api/members/{username}') |
||||
user_dict = handle_sync_response(resp) |
||||
click.confirm(f'Are you sure you want reset the {db_type_name} password for {username}?', abort=True) |
||||
|
||||
info_file_path = os.path.join(user_dict['home_directory'], f"ceo-{db_type}-info") |
||||
check_file_path(info_file_path) |
||||
|
||||
resp = http_post(f'/api/db/{db_type}/{username}/pwreset') |
||||
result = handle_sync_response(resp) |
||||
password = result['password'] |
||||
|
||||
db_cli_response(info_file_path, user_dict, password, db_type, 'pwreset') |
||||
|
||||
|
||||
def delete(username: str, db_type: str): |
||||
check_if_in_development() |
||||
db_type_name = 'MySQL' if db_type == 'mysql' else 'PostgreSQL' |
||||
click.confirm(f"Are you sure you want to delete the {db_type_name} database for {username}?", abort=True) |
||||
resp = http_delete(f'/api/db/{db_type}/{username}') |
||||
handle_sync_response(resp) |
@ -0,0 +1,26 @@ |
||||
import click |
||||
|
||||
from .database import create as db_create, pwreset as db_pwreset, delete as db_delete |
||||
|
||||
|
||||
@click.group(short_help='Perform operations on MySQL') |
||||
def mysql(): |
||||
pass |
||||
|
||||
|
||||
@mysql.command(short_help='Create a MySQL database for a user') |
||||
@click.argument('username') |
||||
def create(username): |
||||
db_create(username, 'mysql') |
||||
|
||||
|
||||
@mysql.command(short_help='Reset the password of a MySQL user') |
||||
@click.argument('username') |
||||
def pwreset(username): |
||||
db_pwreset(username, 'mysql') |
||||
|
||||
|
||||
@mysql.command(short_help="Delete the database of a MySQL user") |
||||
@click.argument('username') |
||||
def delete(username): |
||||
db_delete(username, 'mysql') |
@ -0,0 +1,26 @@ |
||||
import click |
||||
|
||||
from .database import create as db_create, pwreset as db_pwreset, delete as db_delete |
||||
|
||||
|
||||
@click.group(short_help='Perform operations on PostgreSQL') |
||||
def postgresql(): |
||||
pass |
||||
|
||||
|
||||
@postgresql.command(short_help='Create a PostgreSQL database for a user') |
||||
@click.argument('username') |
||||
def create(username): |
||||
db_create(username, 'postgresql') |
||||
|
||||
|
||||
@postgresql.command(short_help='Reset the password of a PostgreSQL user') |
||||
@click.argument('username') |
||||
def pwreset(username): |
||||
db_pwreset(username, 'postgresql') |
||||
|
||||
|
||||
@postgresql.command(short_help="Delete the database of a PostgreSQL user") |
||||
@click.argument('username') |
||||
def delete(username): |
||||
db_delete(username, 'postgresql') |
@ -0,0 +1,82 @@ |
||||
import os |
||||
|
||||
from click.testing import CliRunner |
||||
from mysql.connector import connect |
||||
from mysql.connector.errors import ProgrammingError |
||||
import pytest |
||||
|
||||
from ceo.cli import cli |
||||
|
||||
|
||||
def mysql_attempt_connection(host, username, password): |
||||
with connect( |
||||
host=host, |
||||
user=username, |
||||
password=password, |
||||
) as con, con.cursor() as cur: |
||||
cur.execute("SHOW DATABASES") |
||||
response = cur.fetchall() |
||||
assert len(response) == 2 |
||||
|
||||
with pytest.raises(ProgrammingError): |
||||
cur.execute("CREATE DATABASE new_db") |
||||
|
||||
|
||||
def test_mysql(cli_setup, cfg, ldap_user): |
||||
runner = CliRunner() |
||||
|
||||
username = ldap_user.uid |
||||
os.makedirs(ldap_user.home_directory) |
||||
host = cfg.get("mysql_host") |
||||
info_file_path = os.path.join(ldap_user.home_directory, "ceo-mysql-info") |
||||
assert not os.path.isfile(info_file_path) |
||||
|
||||
# create database for user |
||||
result = runner.invoke(cli, ['mysql', 'create', username], input='y\n') |
||||
assert result.exit_code == 0 |
||||
assert os.path.isfile(info_file_path) |
||||
|
||||
response_arr = result.output.split() |
||||
passwd = response_arr[response_arr.index("Password:") + 1] |
||||
with open(info_file_path, 'r') as file: |
||||
old_info = file.read() |
||||
|
||||
expected = f"""Are you sure you want to create a MySQL database for {username}? [y/N]: y |
||||
MySQL database created. |
||||
Connection Information: |
||||
|
||||
Database: {username} |
||||
Username: {username} |
||||
Password: {passwd} |
||||
Host: {host} |
||||
|
||||
These settings have been written to {info_file_path}. |
||||
""" |
||||
|
||||
assert result.output == expected |
||||
mysql_attempt_connection(host, username, passwd) |
||||
|
||||
# perform password reset for user |
||||
# confirm once to reset password, another to overwrite the file |
||||
result = runner.invoke(cli, ['mysql', 'pwreset', username], input="y\ny\n") |
||||
assert result.exit_code == 0 |
||||
|
||||
response_arr = result.output.split() |
||||
new_passwd = response_arr[response_arr.index("Password:") + 1] |
||||
with open(info_file_path, 'r') as file: |
||||
new_info = file.read() |
||||
|
||||
assert new_passwd != passwd |
||||
assert old_info != new_info |
||||
mysql_attempt_connection(host, username, new_passwd) |
||||
|
||||
# delete database and file |
||||
result = runner.invoke(cli, ['mysql', 'delete', username], input="y\n") |
||||
assert result.exit_code == 0 |
||||
|
||||
# user should be deleted |
||||
with pytest.raises(ProgrammingError): |
||||
mysql_attempt_connection(host, username, passwd) |
||||
|
||||
os.remove(info_file_path) |
||||
os.rmdir(ldap_user.home_directory) |
@ -0,0 +1,84 @@ |
||||
import pytest |
||||
import os |
||||
|
||||
from click.testing import CliRunner |
||||
from ceo.cli import cli |
||||
|
||||
from psycopg2 import connect, OperationalError, ProgrammingError |
||||
|
||||
|
||||
def psql_attempt_connection(host, username, password): |
||||
con = connect( |
||||
host=host, |
||||
user=username, |
||||
password=password, |
||||
) |
||||
con.autocommit = True |
||||
with con.cursor() as cur: |
||||
cur.execute("SELECT datname FROM pg_database") |
||||
response = cur.fetchall() |
||||
# 3 of the 4 are postgres, template0, template1 |
||||
assert len(response) == 4 |
||||
with pytest.raises(ProgrammingError): |
||||
cur.execute("CREATE DATABASE new_db") |
||||
con.close() |
||||
|
||||
|
||||
def test_postgresql(cli_setup, cfg, ldap_user): |
||||
runner = CliRunner() |
||||
|
||||
username = ldap_user.uid |
||||
os.makedirs(ldap_user.home_directory) |
||||
host = cfg.get("postgresql_host") |
||||
info_file_path = os.path.join(ldap_user.home_directory, "ceo-postgresql-info") |
||||
assert not os.path.isfile(info_file_path) |
||||
|
||||
# create database for user |
||||
result = runner.invoke(cli, ['postgresql', 'create', username], input='y\n') |
||||
assert result.exit_code == 0 |
||||
assert os.path.isfile(info_file_path) |
||||
|
||||
response_arr = result.output.split() |
||||
passwd = response_arr[response_arr.index("Password:") + 1] |
||||
with open(info_file_path, 'r') as file: |
||||
old_info = file.read() |
||||
|
||||
expected = f"""Are you sure you want to create a PostgreSQL database for {username}? [y/N]: y |
||||
PostgreSQL database created. |
||||
Connection Information: |
||||
|
||||
Database: {username} |
||||
Username: {username} |
||||
Password: {passwd} |
||||
Host: {host} |
||||
|
||||
These settings have been written to {info_file_path}. |
||||
""" |
||||
|
||||
assert result.output == expected |
||||
psql_attempt_connection(host, username, passwd) |
||||
|
||||
# perform password reset for user |
||||
# confirm once to reset password, another to overwrite the file |
||||
result = runner.invoke(cli, ['postgresql', 'pwreset', username], input="y\ny\n") |
||||
assert result.exit_code == 0 |
||||
|
||||
response_arr = result.output.split() |
||||
new_passwd = response_arr[response_arr.index("Password:") + 1] |
||||
with open(info_file_path, 'r') as file: |
||||
new_info = file.read() |
||||
|
||||
assert new_passwd != passwd |
||||
assert old_info != new_info |
||||
psql_attempt_connection(host, username, new_passwd) |
||||
|
||||
# delete database and file |
||||
result = runner.invoke(cli, ['postgresql', 'delete', username], input="y\n") |
||||
assert result.exit_code == 0 |
||||
|
||||
# user should be deleted |
||||
with pytest.raises(OperationalError): |
||||
psql_attempt_connection(host, username, passwd) |
||||
|
||||
os.remove(info_file_path) |
||||
os.rmdir(ldap_user.home_directory) |
Loading…
Reference in new issue