from .tool.func import * def recent_app_submit_2(): with get_db_connect() as conn: curs = conn.cursor() div = '' curs.execute(db_change('select data from other where name = "requires_approval"')) requires_approval = curs.fetchall() if requires_approval and requires_approval[0][0] != 'on': div += load_lang('approval_requirement_disabled') if flask.request.method == 'GET': curs.execute(db_change('select data from user_set where name = "application"')) db_data = curs.fetchall() if db_data: div += '' + \ load_lang('all_register_num') + ' : ' + str(len(db_data)) + \ '
' + \ '' div += ''' ''' for application in db_data: application = json.loads(application[0]) if 'question' in application: question = html.escape(application['question']) question = question if question != '' else '
' else: question = '
' if 'answer' in application: answer = html.escape(application['answer']) answer = answer if answer != '' else '
' else: answer = '
' if 'email' in application: email = html.escape(application['email']) email = email if email != '' else '
' else: email = '
' div += ''' ''' div += '
''' + load_lang('id') + ''' ''' + load_lang('email') + '''
''' + load_lang('approval_question') + ''' ''' + load_lang('answer') + '''
''' + application['id'] + ''' ''' + email + '''
''' + question + ''' ''' + answer + '''
' else: div += load_lang('no_applications_now') return easy_minify(flask.render_template(skin_check(), imp = [load_lang('application_list'), wiki_set(), wiki_custom(), wiki_css([0, 0])], data = div, menu = [['other', load_lang('return')]] )) else: if admin_check(None, 'app submit') != 1: return re_error('/ban') if flask.request.form.get('approve', '') != '': curs.execute(db_change('select data from user_set where id = ? and name = "application"'), [flask.request.form.get('approve', '')]) application = curs.fetchall() if not application: return re_error('/error/26') else: application = json.loads(application[0][0]) add_user(application['id'], application['pw'], application['email'], application['encode']) curs.execute(db_change("insert into user_set (name, id, data) values ('approval_question', ?, ?)"), [application['id'], application['question']]) curs.execute(db_change("insert into user_set (name, id, data) values ('approval_question_answer', ?, ?)"), [application['id'], application['answer']]) curs.execute(db_change('delete from user_set where id = ? and name = "application"'), [application['id']]) conn.commit() elif flask.request.form.get('decline', '') != '': curs.execute(db_change('delete from user_set where id = ? and name = "application"'), [flask.request.form.get('decline', '')]) conn.commit() return redirect('/app_submit')