| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- from .tool.func import *
- def topic_comment_tool(topic_num = 1, num = 1):
- with get_db_connect() as conn:
- curs = conn.cursor()
-
- num = str(num)
- topic_num = str(topic_num)
-
- if acl_check('', 'topic_view', topic_num) == 1:
- return re_error('/ban')
- curs.execute(db_change("select block, ip, date from topic where code = ? and id = ?"), [topic_num, num])
- data = curs.fetchall()
- if not data:
- return redirect('/thread/' + topic_num)
- ban = '''
- <h2>''' + load_lang('state') + '''</h2>
- <ul class="opennamu_ul">
- <li>''' + load_lang('writer') + ' : ''' + ip_pas(data[0][1]) + '''</li>
- <li>''' + load_lang('time') + ' : ' + data[0][2] + '''</li>
- </ul>
- <h2>''' + load_lang('other_tool') + '''</h2>
- <ul class="opennamu_ul">
- <li>
- <a href="/thread/''' + topic_num + '/comment/' + num + '''/raw">''' + load_lang('raw') + '''</a>
- </li>
- </ul>
- '''
- if admin_check(3) == 1:
- curs.execute(db_change(
- "select id from topic where code = ? and id = ? and top = 'O'"
- ), [topic_num, num])
- top_topic_d = curs.fetchall()
- curs.execute(db_change(
- "select end from rb where block = ? and ongoing = '1'"
- ), [data[0][1]])
- user_ban_d = curs.fetchall()
- ban += '''
- <h2>''' + load_lang('admin_tool') + '''</h2>
- <ul class="opennamu_ul">
- <li>
- <a href="/auth/give/ban/''' + url_pas(data[0][1]) + '''">
- ''' + (load_lang('release') if user_ban_d else load_lang('ban')) + '''
- </a>
- </li>
- <li>
- <a href="/thread/''' + topic_num + '''/comment/''' + num + '''/blind">
- ''' + (load_lang('hide_release') if data[0][0] == 'O' else load_lang('hide')) + '''
- </a>
- </li>
- <li>
- <a href="/thread/''' + topic_num + '''/comment/''' + num + '''/notice">
- ''' + (load_lang('pinned_release') if top_topic_d else load_lang('pinned')) + '''
- </a>
- </li>
- <li>
- <a href="/thread/''' + topic_num + '''/comment/''' + num + '''/delete">
- ''' + load_lang('delete') + '''
- </a>
- </ul>
- '''
- return easy_minify(flask.render_template(skin_check(),
- imp = [load_lang('discussion_tool'), wiki_set(), wiki_custom(), wiki_css(['(#' + num + ')', 0])],
- data = ban,
- menu = [['thread/' + topic_num + '#' + num, load_lang('return')]]
- ))
|