mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
78 lines
2.2 KiB
Python
78 lines
2.2 KiB
Python
# 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/>.
|
|
|
|
|
|
import flask, json
|
|
from flask.ext.sqlalchemy import SQLAlchemy
|
|
from app import app
|
|
from app.models import *
|
|
from app.tasks import celery
|
|
from .phpbbparser import getProfile
|
|
import urllib.request
|
|
from urllib.parse import urlparse, quote_plus
|
|
|
|
@celery.task()
|
|
def checkForumAccount(username, token=None):
|
|
try:
|
|
profile = getProfile("https://forum.minetest.net", username)
|
|
except OSError:
|
|
return
|
|
|
|
user = User.query.filter_by(forums_username=username).first()
|
|
|
|
# Create user
|
|
needsSaving = False
|
|
if user is None:
|
|
user = User(username)
|
|
user.forums_username = username
|
|
db.session.add(user)
|
|
|
|
# Get github username
|
|
github_username = profile.get("github")
|
|
if github_username is not None and github_username.strip() != "":
|
|
print("Updated github username for " + user.display_name + " to " + github_username)
|
|
user.github_username = github_username
|
|
needsSaving = True
|
|
|
|
# Save
|
|
if needsSaving:
|
|
db.session.commit()
|
|
|
|
@celery.task()
|
|
def importUsersFromModList():
|
|
contents = urllib.request.urlopen("http://krock-works.16mb.com/MTstuff/modList.php").read().decode("utf-8")
|
|
list = json.loads(contents)
|
|
found = {}
|
|
imported = []
|
|
|
|
for user in User.query.all():
|
|
found[user.username] = True
|
|
if user.forums_username is not None:
|
|
found[user.forums_username] = True
|
|
|
|
for x in list:
|
|
author = x.get("author")
|
|
if author is not None and not author in found:
|
|
user = User(author)
|
|
user.forums_username = author
|
|
imported.append(author)
|
|
found[author] = True
|
|
db.session.add(user)
|
|
|
|
db.session.commit()
|
|
for author in found:
|
|
checkForumAccount.delay(author, None)
|