aboutsummaryrefslogtreecommitdiff
path: root/app/blueprints/users/claim.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/blueprints/users/claim.py')
-rw-r--r--app/blueprints/users/claim.py98
1 files changed, 98 insertions, 0 deletions
diff --git a/app/blueprints/users/claim.py b/app/blueprints/users/claim.py
new file mode 100644
index 0000000..7c6283d
--- /dev/null
+++ b/app/blueprints/users/claim.py
@@ -0,0 +1,98 @@
+# Content DB
+# Copyright (C) 2018 rubenwardy
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+
+from . import bp
+from flask import redirect, render_template, session, request, flash, url_for
+from flask_user import current_user
+from app.models import db, User, UserRank
+from app.utils import randomString, loginUser, rank_required
+from app.tasks.forumtasks import checkForumAccount
+from app.tasks.phpbbparser import getProfile
+
+@bp.route("/user/claim/", methods=["GET", "POST"])
+def claim():
+ username = request.args.get("username")
+ if username is None:
+ username = ""
+ else:
+ method = request.args.get("method")
+ user = User.query.filter_by(forums_username=username).first()
+ if user and user.rank.atLeast(UserRank.NEW_MEMBER):
+ flash("User has already been claimed", "danger")
+ return redirect(url_for("users.claim"))
+ elif user is None and method == "github":
+ flash("Unable to get Github username for user", "danger")
+ return redirect(url_for("users.claim"))
+ elif user is None:
+ flash("Unable to find that user", "danger")
+ return redirect(url_for("users.claim"))
+
+ if user is not None and method == "github":
+ return redirect(url_for("github.start"))
+
+ token = None
+ if "forum_token" in session:
+ token = session["forum_token"]
+ else:
+ token = randomString(32)
+ session["forum_token"] = token
+
+ if request.method == "POST":
+ ctype = request.form.get("claim_type")
+ username = request.form.get("username")
+
+ if username is None or len(username.strip()) < 2:
+ flash("Invalid username", "danger")
+ elif ctype == "github":
+ task = checkForumAccount.delay(username)
+ return redirect(url_for("tasks.check", id=task.id, r=url_for("users.claim", username=username, method="github")))
+ elif ctype == "forum":
+ user = User.query.filter_by(forums_username=username).first()
+ if user is not None and user.rank.atLeast(UserRank.NEW_MEMBER):
+ flash("That user has already been claimed!", "danger")
+ return redirect(url_for("users.claim"))
+
+ # Get signature
+ sig = None
+ try:
+ profile = getProfile("https://forum.minetest.net", username)
+ sig = profile.signature
+ except IOError:
+ flash("Unable to get forum signature - does the user exist?", "danger")
+ return redirect(url_for("users.claim", username=username))
+
+ # Look for key
+ if token in sig:
+ if user is None:
+ user = User(username)
+ user.forums_username = username
+ db.session.add(user)
+ db.session.commit()
+
+ if loginUser(user):
+ return redirect(url_for("users.set_password"))
+ else:
+ flash("Unable to login as user", "danger")
+ return redirect(url_for("users.claim", username=username))
+
+ else:
+ flash("Could not find the key in your signature!", "danger")
+ return redirect(url_for("users.claim", username=username))
+ else:
+ flash("Unknown claim type", "danger")
+
+ return render_template("users/claim.html", username=username, key=token)