| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- import multiprocessing
- from .tool.func import *
- def edit_render_set(name, content):
- render_set(
- doc_name = name,
- doc_data = content
- )
- # https://stackoverflow.com/questions/13821156/timeout-function-using-threading-in-python-does-not-work
- def edit_timeout(func, args = (), timeout = 3):
- pool = multiprocessing.Pool(processes = 1)
- result = pool.apply_async(func, args = args)
- try:
- result.get(timeout = timeout)
- except multiprocessing.TimeoutError:
- pool.terminate()
- return 1
- else:
- pool.close()
- pool.join()
- return 0
-
- def edit_editor(curs, ip, data_main = '', do_type = 'edit'):
- monaco_editor_top = ''
- editor_display = ''
- add_get_file = ''
- monaco_display = ''
-
- monaco_on = get_main_skin_set(curs, flask.session, 'main_css_monaco', ip)
- if monaco_on == 'use':
- editor_display = 'style="display: none;"'
- add_get_file = '''
- <link rel="stylesheet"
- data-name="vs/editor/editor.main"
- href="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.37.1/min/vs/editor/editor.main.min.css">
- <script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.37.1/min/vs/loader.min.js"></script>
- '''
- monaco_editor_top = '<a href="javascript:opennamu_edit_turn_off_monaco();">(' + load_lang('turn_off_monaco') + ')</a>'
-
- if flask.request.cookies.get('main_css_darkmode', '0') == '1':
- monaco_thema = 'vs-dark'
- else:
- monaco_thema = ''
-
- add_script = 'do_monaco_init("' + monaco_thema + '");'
- else:
- monaco_display = 'style="display: none;"'
- add_script = 'opennamu_edit_turn_off_monaco();'
- curs.execute(db_change('select data from other where name = "edit_help"'))
- sql_d = curs.fetchall()
- p_text = html.escape(sql_d[0][0]) if sql_d and sql_d[0][0] != '' else load_lang('default_edit_help')
- if do_type == 'edit':
- textarea_size = 'opennamu_textarea_500'
- else:
- textarea_size = 'opennamu_textarea_100'
- return add_get_file + '''
- <textarea style="display: none;" id="opennamu_edit_origin" name="doc_data_org">''' + html.escape(data_main) + '''</textarea>
- <div>''' + monaco_editor_top + ' ' + edit_button('opennamu_edit_textarea', 'opennamu_monaco_editor') + '''</div>
-
- <div id="opennamu_monaco_editor" class="''' + textarea_size + '''" ''' + monaco_display + '''></div>
- <textarea id="opennamu_edit_textarea" ''' + editor_display + ''' class="''' + textarea_size + '''" name="content" placeholder="''' + p_text + '''">''' + html.escape(data_main) + '''</textarea>
- <hr class="main_hr">
- <script>
- do_stop_exit();
- do_paste_image('opennamu_edit_textarea', 'opennamu_monaco_editor');
- ''' + add_script + '''
- </script>
- '''
- 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'
- edit_repeat = 'error' if do_type == 'preview' 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', '')
- 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])
- db_data = curs.fetchall()
- if db_data:
- o_data = db_data[0][0].replace('\r', '')
- 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))
- else:
- leng = '+' + str(len(content))
- curs.execute(db_change("select data from other where name = 'edit_timeout'"))
- db_data_2 = curs.fetchall()
- db_data_2 = '' if not db_data_2 else number_check(db_data_2[0][0])
- try:
- if db_data_2 != '':
- timeout = edit_timeout(edit_render_set, (name, content), timeout = int(db_data_2))
- else:
- timeout = 0
- except Exception as e:
- print('multiprocessing error : ')
- print(e)
- timeout = 0
- if timeout == 1:
- return re_error('/error/41')
-
- if db_data:
- curs.execute(db_change("update data set data = ? where title = ?"), [content, name])
- else:
- 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, '<a href="/w/' + url_pas(name) + '">' + html.escape(name) + '</a>')
-
- 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 = ''
- data_preview = ''
- 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 += '<a href="/manager/15/' + url_pas(name) + '">(' + load_lang('load') + ')</a> '
- 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', '')
- 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', '')
- data = data.replace('\r', '')
-
- data_section_where = flask.request.form.get('doc_section_data_where', '')
- doc_section_edit_apply = flask.request.form.get('doc_section_edit_apply', '')
- doc_ver = flask.request.form.get('ver', '')
- if do_type != 'preview':
- warning_edit = load_lang('exp_edit_conflict') + ' '
-
- if flask.request.form.get('ver', '0') == '0':
- warning_edit += '<a href="/raw/' + url_pas(name) + '">(r' + doc_ver + ')</a>'
- else:
- warning_edit += '' + \
- '<a href="/diff/' + flask.request.form.get('ver', '1') + '/' + doc_ver + '/' + url_pas(name) + '">' + \
- '(r' + doc_ver + ')' + \
- '</a>' + \
- ''
-
- warning_edit += '<hr class="main_hr">'
- editor_top_text = warning_edit + editor_top_text
- else:
- data_preview = render_set(
- doc_name = name,
- doc_data = data,
- data_type = 'from'
- )
- if data_section == '':
- data_section = data
- if section == '':
- form_action = 'formaction="/edit/' + url_pas(name) + '"'
- form_action_preview = 'formaction="/edit_preview/' + url_pas(name) + '"'
- else:
- form_action = 'formaction="/edit_section/' + str(section) + '/' + url_pas(name) + '"'
- form_action_preview = 'formaction="/edit_section_preview/' + str(section) + '/' + url_pas(name) + '"'
-
- editor_top_text += '<a href="/edit_filter">(' + load_lang('edit_filter_rule') + ')</a>'
-
- if editor_top_text != '':
- editor_top_text += '<hr class="main_hr">'
- sub_menu = ' (' + str(section) + ')' if section != '' else ''
- return easy_minify(flask.render_template(skin_check(),
- imp = [name, wiki_set(), wiki_custom(), wiki_css(['(' + load_lang('edit') + ')' + sub_menu, 0])],
- data = editor_top_text + '''
- <form method="post">
- <textarea style="display: none;" name="doc_section_data_where">''' + data_section_where + '''</textarea>
- <input style="display: none;" name="doc_section_edit_apply" value="''' + doc_section_edit_apply + '''">
- <input style="display: none;" name="ver" value="''' + doc_ver + '''">
-
- ''' + edit_editor(curs, ip, data_section) + '''
- <input placeholder="''' + load_lang('why') + '''" name="send">
- <hr class="main_hr">
-
- ''' + captcha_get() + ip_warning() + get_edit_text_bottom_check_box() + get_edit_text_bottom() + '''
-
- <button id="opennamu_save_button" type="submit" ''' + form_action + ''' onclick="do_monaco_to_textarea(); do_stop_exit_release();">''' + load_lang('save') + '''</button>
- <button id="opennamu_preview_button" type="submit" ''' + form_action_preview + ''' onclick="do_monaco_to_textarea(); do_stop_exit_release();">''' + load_lang('preview') + '''</button>
- </form>
-
- <hr class="main_hr">
- <div id="opennamu_preview_area">''' + data_preview + '''</div>
- ''',
- menu = [
- ['w/' + url_pas(name), load_lang('return')],
- ['delete/' + url_pas(name), load_lang('delete')],
- ['move/' + url_pas(name), load_lang('move')],
- ['upload', load_lang('upload')]
- ]
- ))
|