mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
159 lines
4.5 KiB
Python
159 lines
4.5 KiB
Python
from io import BytesIO
|
|
|
|
from flask import request, render_template, redirect, url_for, flash
|
|
from flask_login import current_user, login_required
|
|
from flask_wtf import FlaskForm
|
|
from flask_wtf.file import FileField
|
|
from wtforms import StringField, validators
|
|
|
|
from app import s3
|
|
from app.developer.base import developer_bp
|
|
from app.extensions import db
|
|
from app.log import LOG
|
|
from app.models import Client, RedirectUri, File
|
|
from app.utils import random_string
|
|
|
|
|
|
class EditClientForm(FlaskForm):
|
|
name = StringField("Name", validators=[validators.DataRequired()])
|
|
icon = FileField("Icon")
|
|
home_url = StringField("Home Url")
|
|
|
|
|
|
# basic info
|
|
@developer_bp.route("/clients/<client_id>", methods=["GET", "POST"])
|
|
@login_required
|
|
def client_detail(client_id):
|
|
form = EditClientForm()
|
|
|
|
is_new = "is_new" in request.args
|
|
|
|
client = Client.get(client_id)
|
|
if not client:
|
|
flash("no such client", "warning")
|
|
return redirect(url_for("developer.index"))
|
|
|
|
if client.user_id != current_user.id:
|
|
flash("you cannot see this app", "warning")
|
|
return redirect(url_for("developer.index"))
|
|
|
|
if form.validate_on_submit():
|
|
client.name = form.name.data
|
|
client.home_url = form.home_url.data
|
|
|
|
if form.icon.data:
|
|
# todo: remove current icon if any
|
|
# todo: handle remove icon
|
|
file_path = random_string(30)
|
|
file = File.create(path=file_path)
|
|
|
|
s3.upload_from_bytesio(file_path, BytesIO(form.icon.data.read()))
|
|
|
|
db.session.flush()
|
|
LOG.d("upload file %s to s3", file)
|
|
|
|
client.icon_id = file.id
|
|
db.session.flush()
|
|
|
|
db.session.commit()
|
|
|
|
flash(f"{client.name} has been updated", "success")
|
|
|
|
return redirect(url_for("developer.client_detail", client_id=client.id))
|
|
|
|
return render_template(
|
|
"developer/client_details/basic_info.html",
|
|
form=form,
|
|
client=client,
|
|
is_new=is_new,
|
|
)
|
|
|
|
|
|
class OAuthSettingForm(FlaskForm):
|
|
pass
|
|
|
|
|
|
@developer_bp.route("/clients/<client_id>/oauth_setting", methods=["GET", "POST"])
|
|
@login_required
|
|
def client_detail_oauth_setting(client_id):
|
|
form = OAuthSettingForm()
|
|
client = Client.get(client_id)
|
|
if not client:
|
|
flash("no such app", "warning")
|
|
return redirect(url_for("developer.index"))
|
|
|
|
if client.user_id != current_user.id:
|
|
flash("you cannot see this app", "warning")
|
|
return redirect(url_for("developer.index"))
|
|
|
|
if form.validate_on_submit():
|
|
uris = request.form.getlist("uri")
|
|
|
|
# replace all uris. TODO: optimize this?
|
|
for redirect_uri in client.redirect_uris:
|
|
RedirectUri.delete(redirect_uri.id)
|
|
|
|
for uri in uris:
|
|
RedirectUri.create(client_id=client_id, uri=uri)
|
|
|
|
db.session.commit()
|
|
|
|
flash(f"{client.name} has been updated", "success")
|
|
|
|
return redirect(
|
|
url_for("developer.client_detail_oauth_setting", client_id=client.id)
|
|
)
|
|
|
|
return render_template(
|
|
"developer/client_details/oauth_setting.html", form=form, client=client
|
|
)
|
|
|
|
|
|
@developer_bp.route("/clients/<client_id>/oauth_endpoint", methods=["GET", "POST"])
|
|
@login_required
|
|
def client_detail_oauth_endpoint(client_id):
|
|
client = Client.get(client_id)
|
|
if not client:
|
|
flash("no such app", "warning")
|
|
return redirect(url_for("developer.index"))
|
|
|
|
if client.user_id != current_user.id:
|
|
flash("you cannot see this app", "warning")
|
|
return redirect(url_for("developer.index"))
|
|
|
|
return render_template(
|
|
"developer/client_details/oauth_endpoint.html", client=client
|
|
)
|
|
|
|
|
|
class AdvancedForm(FlaskForm):
|
|
pass
|
|
|
|
|
|
@developer_bp.route("/clients/<client_id>/advanced", methods=["GET", "POST"])
|
|
@login_required
|
|
def client_detail_advanced(client_id):
|
|
form = AdvancedForm()
|
|
client = Client.get(client_id)
|
|
if not client:
|
|
flash("no such app", "warning")
|
|
return redirect(url_for("developer.index"))
|
|
|
|
if client.user_id != current_user.id:
|
|
flash("you cannot see this app", "warning")
|
|
return redirect(url_for("developer.index"))
|
|
|
|
if form.validate_on_submit():
|
|
# delete client
|
|
client_name = client.name
|
|
Client.delete(client.id)
|
|
db.session.commit()
|
|
LOG.d("Remove client %s", client)
|
|
flash(f"{client_name} has been deleted successfully", "success")
|
|
|
|
return redirect(url_for("developer.index"))
|
|
|
|
return render_template(
|
|
"developer/client_details/advanced.html", form=form, client=client
|
|
)
|