from .tool.func import * def edit(name = 'Test', section = 0, do_type = ''): with get_db_connect() as conn: curs = conn.cursor() ip = ip_check() if acl_check(name, 'document_edit') == 1: return redirect('/raw_acl/' + url_pas(name)) if do_title_length_check(name) == 1: return re_error('/error/38') curs.execute(db_change("select id from history where title = ? order by id + 0 desc"), [name]) doc_ver = curs.fetchall() doc_ver = doc_ver[0][0] if doc_ver else '0' section = '' if section == 0 else section post_ver = flask.request.form.get('ver', '') if flask.request.method == 'POST': edit_repeat = 'error' if post_ver != doc_ver else 'post' else: edit_repeat = 'get' if edit_repeat == 'post': if captcha_post(flask.request.form.get('g-recaptcha-response', flask.request.form.get('g-recaptcha', ''))) == 1: return re_error('/error/13') else: captcha_post('', 0) if do_edit_slow_check() == 1: return re_error('/error/24') today = get_time() content = flask.request.form.get('content', '').replace('\r\n', '\n') send = flask.request.form.get('send', '') agree = flask.request.form.get('copyright_agreement', '') if do_edit_filter(content) == 1: return re_error('/error/21') if do_edit_send_check(send) == 1: return re_error('/error/37') if do_edit_text_bottom_check_box_check(agree) == 1: return re_error('/error/29') curs.execute(db_change("select data from data where title = ?"), [name]) old = curs.fetchall() if old: o_data = old[0][0].replace('\r\n', '\n') if section != '': if flask.request.form.get('doc_section_edit_apply', 'X') != 'X': if flask.request.form.get('doc_section_data_where', '') != '': data_match_where = flask.request.form.get('doc_section_data_where', '').split(',') if len(data_match_where) == 2: data_match_a = int(number_check(data_match_where[0])) if data_match_where[1] != 'inf': data_match_b = int(number_check(data_match_where[1])) else: data_match_b = 'inf' try: if data_match_b != 'inf': content = o_data[ : data_match_a] + content + o_data[data_match_b : ] else: content = o_data[ : data_match_a] + content except: pass leng = leng_check(len(o_data), len(content)) curs.execute(db_change("update data set data = ? where title = ?"), [content, name]) else: leng = '+' + str(len(content)) curs.execute(db_change("insert into data (title, data) values (?, ?)"), [name, content]) curs.execute(db_change('select data from other where name = "count_all_title"')) curs.execute(db_change("update other set data = ? where name = 'count_all_title'"), [str(int(curs.fetchall()[0][0]) + 1)]) curs.execute(db_change("select user from scan where title = ? and type = ''"), [name]) for scan_user in curs.fetchall(): add_alarm(scan_user[0], ip + ' | ' + html.escape(name) + ' | Edit') history_plus( name, content, today, ip, send, leng ) curs.execute(db_change("delete from back where link = ?"), [name]) curs.execute(db_change("delete from back where title = ? and type = 'no'"), [name]) render_set( doc_name = name, doc_data = content, data_type = 'backlink' ) conn.commit() section = (('#edit_load_' + str(section)) if section != '' else '') return redirect('/w/' + url_pas(name) + section) else: editor_top_text = '' doc_section_edit_apply = 'X' data_section = '' data_section_where = '' if edit_repeat == 'get': if do_type == 'load': if flask.session and 'edit_load_document' in flask.session: load_title = flask.session['edit_load_document'] else: load_title = 0 else: load_title = 0 if load_title == 0 and section == '': load_title = name editor_top_text += '(' + load_lang('load') + ') ' elif section != '': load_title = name curs.execute(db_change("select data from data where title = ?"), [load_title]) db_data = curs.fetchall() data = db_data[0][0] if db_data else '' data = data.replace('\r\n', '\n') if section != '': curs.execute(db_change('select data from other where name = "markup"')) db_data = curs.fetchall() db_data = db_data[0][0] if db_data else 'namumark' if db_data in ('namumark', 'namumark_beta'): count = 1 data_section = '\n' + data + '\n' while 1: data_match_re = r'\n((={1,6})(#?) ?([^\n]+))\n' data_match = re.search(data_match_re, data_section) if not data_match: data_section = '' break elif count > section: data_section = '' break if section == count: data_section_sub = data_section data_section_sub = re.sub(data_match_re, ('.' * (len(data_match.group(0)) - 1)) + '\n', data_section_sub, 1) data_match_plus = re.search(data_match_re, data_section_sub) if data_match_plus: data_section = data[data_match.span()[0] : data_match_plus.span()[0] - 1] data_section_where = str(data_match.span()[0]) + ',' + str(data_match_plus.span()[0] - 1) else: data_section = data[data_match.span()[0] : ] data_section_where = str(data_match.span()[0]) + ',inf' doc_section_edit_apply = 'O' break else: data_section = re.sub(data_match_re, ('.' * (len(data_match.group(0)) - 1)) + '\n', data_section, 1) count += 1 else: data = flask.request.form.get('content', '') warning_edit = load_lang('exp_edit_conflict') + ' ' if flask.request.form.get('ver', '0') == '0': warning_edit += '(r' + doc_ver + ')' else: warning_edit += '' + \ '' + \ '(r' + doc_ver + ')' + \ '' + \ '' warning_edit += '