|
|
@@ -52,223 +52,227 @@ print('25. Recalc exist data_set')
|
|
|
print('26. Change update branch')
|
|
|
print('27. Change golang port')
|
|
|
|
|
|
-what_i_do = input('Insert selection number (EX : 9) : ')
|
|
|
-if what_i_do == '1':
|
|
|
- try:
|
|
|
- go_num = int(input('Count (100) : '))
|
|
|
- except ValueError:
|
|
|
- go_num = 100
|
|
|
-
|
|
|
- curs.execute(db_change('select count(*) from data'))
|
|
|
- count = curs.fetchall()
|
|
|
- count = count[0][0] if count else 0
|
|
|
-
|
|
|
- num = 0
|
|
|
- title = []
|
|
|
- print('Load...')
|
|
|
-
|
|
|
- while num == 0 or len(title) == 100:
|
|
|
- curs.execute(db_change('select title from data limit ?, 100'), [num])
|
|
|
- title = curs.fetchall()
|
|
|
-
|
|
|
- print('Rest : ' + str(count - num))
|
|
|
- print('Start : ' + title[0][0])
|
|
|
- time.sleep(1)
|
|
|
-
|
|
|
- for name in title:
|
|
|
- num += 1
|
|
|
- if num % go_num == 0:
|
|
|
- print(str(num) + ' : ' + name[0])
|
|
|
-
|
|
|
- curs.execute(db_change("select data from data where title = ?"), [name[0]])
|
|
|
- data = curs.fetchall()
|
|
|
-
|
|
|
- render_lang_data = {
|
|
|
- 'toc' : 'toc',
|
|
|
- 'category' : 'category'
|
|
|
- }
|
|
|
-
|
|
|
- class_do_render(conn, render_lang_data, '').do_render(name[0], data[0][0], 'backlink')
|
|
|
-elif what_i_do == '2':
|
|
|
- curs.execute(db_change("delete from other where name = 'recaptcha'"))
|
|
|
- curs.execute(db_change("delete from other where name = 'sec_re'"))
|
|
|
-elif what_i_do == '3':
|
|
|
- user_data = input('IP or Name : ')
|
|
|
-
|
|
|
- curs.execute(
|
|
|
- db_change(
|
|
|
- "insert into rb (block, end, today, blocker, why, band, ongoing, login) "
|
|
|
- "values (?, ?, ?, ?, ?, ?, '', '')"
|
|
|
- ),
|
|
|
- [
|
|
|
- user_data,
|
|
|
- 'release',
|
|
|
- get_time(),
|
|
|
- 'tool:emergency',
|
|
|
- '',
|
|
|
- '',
|
|
|
- ]
|
|
|
- )
|
|
|
-
|
|
|
- curs.execute(db_change("update rb set ongoing = '' where block = ?"), [user_data])
|
|
|
-elif what_i_do == '4':
|
|
|
- host = input('Host : ')
|
|
|
-
|
|
|
- curs.execute(db_change("update other set data = ? where name = 'host'"), [host])
|
|
|
-elif what_i_do == '5':
|
|
|
- port = int(input('Port : '))
|
|
|
-
|
|
|
- curs.execute(db_change("update other set data = ? where name = 'port'"), [port])
|
|
|
-elif what_i_do == '6':
|
|
|
- skin = input('Skin name : ')
|
|
|
-
|
|
|
- curs.execute(db_change("update other set data = ? where name = 'skin'"), [skin])
|
|
|
-elif what_i_do == '7':
|
|
|
- user_name = input('User name : ')
|
|
|
- user_pw = input('User password : ')
|
|
|
-
|
|
|
- hashed = pw_encode(conn, user_pw)
|
|
|
- curs.execute(db_change("update user_set set data = ? where id = ? and name = 'pw'"), [
|
|
|
- hashed,
|
|
|
- user_name
|
|
|
- ])
|
|
|
-elif what_i_do == '8':
|
|
|
- new_ver = input('Insert version (0000000) : ')
|
|
|
-
|
|
|
- if new_ver == '':
|
|
|
- new_ver = '0000000'
|
|
|
-
|
|
|
- curs.execute(db_change("update other set data = ? where name = 'ver'"), [new_ver])
|
|
|
-elif what_i_do == '9':
|
|
|
- if os.path.exists(os.path.join('data', 'set.json')):
|
|
|
- os.remove(os.path.join('data', 'set.json'))
|
|
|
-elif what_i_do == '10':
|
|
|
- user_name = input('User name : ')
|
|
|
- new_name = input('New name : ')
|
|
|
-
|
|
|
- curs.execute(
|
|
|
- db_change("update user_set set id = ? where id = ?"),
|
|
|
- [new_name, user_name]
|
|
|
- )
|
|
|
-elif what_i_do == '11':
|
|
|
- if os.path.exists(os.path.join('data', 'mysql.json')):
|
|
|
- os.remove(os.path.join('data', 'mysql.json'))
|
|
|
-elif what_i_do == '14':
|
|
|
- curs.execute(db_change('delete from other where name = "head"'))
|
|
|
-elif what_i_do == '15':
|
|
|
- user_name = input('User name : ')
|
|
|
-
|
|
|
- curs.execute(db_change("update user_set set data = 'owner' where id = ? and name = 'acl'"), [user_name])
|
|
|
-elif what_i_do == '16':
|
|
|
- user_name = input('User name : ')
|
|
|
-
|
|
|
- curs.execute(db_change('select data from user_set where name = "2fa" and id = ?'), [user_name])
|
|
|
- if curs.fetchall():
|
|
|
- curs.execute(db_change("update user_set set data = '' where name = '2fa' and id = ?"), [user_name])
|
|
|
-elif what_i_do == '17':
|
|
|
- markup = input('Markup name : ')
|
|
|
-
|
|
|
- curs.execute(db_change("update other set data = ? where name = 'markup'"), [markup])
|
|
|
-elif what_i_do == '18':
|
|
|
- wiki_access_password = input('Password : ')
|
|
|
-
|
|
|
- curs.execute(db_change("update other set data = ? where name = 'wiki_access_password'"), [wiki_access_password])
|
|
|
-elif what_i_do == '19':
|
|
|
- curs.execute(db_change('select data from other where name = "update"'))
|
|
|
- up_data = curs.fetchall()
|
|
|
- up_data = up_data[0][0] if up_data and up_data[0][0] in ['stable', 'beta', 'dev', 'dont_use'] else 'stable'
|
|
|
-
|
|
|
- if platform.system() == 'Linux' or platform.system() == 'Darwin':
|
|
|
- ok = []
|
|
|
- ok += [os.system('git remote rm origin')]
|
|
|
- ok += [os.system('git remote add origin https://github.com/opennamu/opennamu.git')]
|
|
|
- ok += [os.system('git fetch --depth=1 origin ' + up_data)]
|
|
|
- ok += [os.system('git reset --hard origin/' + up_data)]
|
|
|
- for for_a in ok[1:]:
|
|
|
- if for_a != 0:
|
|
|
+async def main():
|
|
|
+ what_i_do = input('Insert selection number (EX : 9) : ')
|
|
|
+ if what_i_do == '1':
|
|
|
+ try:
|
|
|
+ go_num = int(input('Count (100) : '))
|
|
|
+ except ValueError:
|
|
|
+ go_num = 100
|
|
|
+
|
|
|
+ curs.execute(db_change('select count(*) from data'))
|
|
|
+ count = curs.fetchall()
|
|
|
+ count = count[0][0] if count else 0
|
|
|
+
|
|
|
+ num = 0
|
|
|
+ title = []
|
|
|
+ print('Load...')
|
|
|
+
|
|
|
+ while num == 0 or len(title) == 100:
|
|
|
+ curs.execute(db_change('select title from data limit ?, 100'), [num])
|
|
|
+ title = curs.fetchall()
|
|
|
+
|
|
|
+ print('Rest : ' + str(count - num))
|
|
|
+ print('Start : ' + title[0][0])
|
|
|
+ time.sleep(1)
|
|
|
+
|
|
|
+ for name in title:
|
|
|
+ num += 1
|
|
|
+ if num % go_num == 0:
|
|
|
+ print(str(num) + ' : ' + name[0])
|
|
|
+
|
|
|
+ curs.execute(db_change("select data from data where title = ?"), [name[0]])
|
|
|
+ data = curs.fetchall()
|
|
|
+
|
|
|
+ render_lang_data = {
|
|
|
+ 'toc' : 'toc',
|
|
|
+ 'category' : 'category'
|
|
|
+ }
|
|
|
+
|
|
|
+ await class_do_render(conn, render_lang_data, '').do_render(name[0], data[0][0], 'backlink')
|
|
|
+ elif what_i_do == '2':
|
|
|
+ curs.execute(db_change("delete from other where name = 'recaptcha'"))
|
|
|
+ curs.execute(db_change("delete from other where name = 'sec_re'"))
|
|
|
+ elif what_i_do == '3':
|
|
|
+ user_data = input('IP or Name : ')
|
|
|
+
|
|
|
+ curs.execute(
|
|
|
+ db_change(
|
|
|
+ "insert into rb (block, end, today, blocker, why, band, ongoing, login) "
|
|
|
+ "values (?, ?, ?, ?, ?, ?, '', '')"
|
|
|
+ ),
|
|
|
+ [
|
|
|
+ user_data,
|
|
|
+ 'release',
|
|
|
+ get_time(),
|
|
|
+ 'tool:emergency',
|
|
|
+ '',
|
|
|
+ '',
|
|
|
+ ]
|
|
|
+ )
|
|
|
+
|
|
|
+ curs.execute(db_change("update rb set ongoing = '' where block = ?"), [user_data])
|
|
|
+ elif what_i_do == '4':
|
|
|
+ host = input('Host : ')
|
|
|
+
|
|
|
+ curs.execute(db_change("update other set data = ? where name = 'host'"), [host])
|
|
|
+ elif what_i_do == '5':
|
|
|
+ port = int(input('Port : '))
|
|
|
+
|
|
|
+ curs.execute(db_change("update other set data = ? where name = 'port'"), [port])
|
|
|
+ elif what_i_do == '6':
|
|
|
+ skin = input('Skin name : ')
|
|
|
+
|
|
|
+ curs.execute(db_change("update other set data = ? where name = 'skin'"), [skin])
|
|
|
+ elif what_i_do == '7':
|
|
|
+ user_name = input('User name : ')
|
|
|
+ user_pw = input('User password : ')
|
|
|
+
|
|
|
+ hashed = pw_encode(conn, user_pw)
|
|
|
+ curs.execute(db_change("update user_set set data = ? where id = ? and name = 'pw'"), [
|
|
|
+ hashed,
|
|
|
+ user_name
|
|
|
+ ])
|
|
|
+ elif what_i_do == '8':
|
|
|
+ new_ver = input('Insert version (0000000) : ')
|
|
|
+
|
|
|
+ if new_ver == '':
|
|
|
+ new_ver = '0000000'
|
|
|
+
|
|
|
+ curs.execute(db_change("update other set data = ? where name = 'ver'"), [new_ver])
|
|
|
+ elif what_i_do == '9':
|
|
|
+ if os.path.exists(os.path.join('data', 'set.json')):
|
|
|
+ os.remove(os.path.join('data', 'set.json'))
|
|
|
+ elif what_i_do == '10':
|
|
|
+ user_name = input('User name : ')
|
|
|
+ new_name = input('New name : ')
|
|
|
+
|
|
|
+ curs.execute(
|
|
|
+ db_change("update user_set set id = ? where id = ?"),
|
|
|
+ [new_name, user_name]
|
|
|
+ )
|
|
|
+ elif what_i_do == '11':
|
|
|
+ if os.path.exists(os.path.join('data', 'mysql.json')):
|
|
|
+ os.remove(os.path.join('data', 'mysql.json'))
|
|
|
+ elif what_i_do == '14':
|
|
|
+ curs.execute(db_change('delete from other where name = "head"'))
|
|
|
+ elif what_i_do == '15':
|
|
|
+ user_name = input('User name : ')
|
|
|
+
|
|
|
+ curs.execute(db_change("update user_set set data = 'owner' where id = ? and name = 'acl'"), [user_name])
|
|
|
+ elif what_i_do == '16':
|
|
|
+ user_name = input('User name : ')
|
|
|
+
|
|
|
+ curs.execute(db_change('select data from user_set where name = "2fa" and id = ?'), [user_name])
|
|
|
+ if curs.fetchall():
|
|
|
+ curs.execute(db_change("update user_set set data = '' where name = '2fa' and id = ?"), [user_name])
|
|
|
+ elif what_i_do == '17':
|
|
|
+ markup = input('Markup name : ')
|
|
|
+
|
|
|
+ curs.execute(db_change("update other set data = ? where name = 'markup'"), [markup])
|
|
|
+ elif what_i_do == '18':
|
|
|
+ wiki_access_password = input('Password : ')
|
|
|
+
|
|
|
+ curs.execute(db_change("update other set data = ? where name = 'wiki_access_password'"), [wiki_access_password])
|
|
|
+ elif what_i_do == '19':
|
|
|
+ curs.execute(db_change('select data from other where name = "update"'))
|
|
|
+ up_data = curs.fetchall()
|
|
|
+ up_data = up_data[0][0] if up_data and up_data[0][0] in ['stable', 'beta', 'dev', 'dont_use'] else 'stable'
|
|
|
+
|
|
|
+ if platform.system() == 'Linux' or platform.system() == 'Darwin':
|
|
|
+ ok = []
|
|
|
+ ok += [os.system('git remote rm origin')]
|
|
|
+ ok += [os.system('git remote add origin https://github.com/opennamu/opennamu.git')]
|
|
|
+ ok += [os.system('git fetch --depth=1 origin ' + up_data)]
|
|
|
+ ok += [os.system('git reset --hard origin/' + up_data)]
|
|
|
+ for for_a in ok[1:]:
|
|
|
+ if for_a != 0:
|
|
|
+ print('Error : update failed')
|
|
|
+
|
|
|
+ break
|
|
|
+ elif platform.system() == 'Windows':
|
|
|
+ os.system('rd /s /q route')
|
|
|
+
|
|
|
+ urllib.request.urlretrieve('https://github.com/opennamu/opennamu/archive/' + up_data + '.zip', 'update.zip')
|
|
|
+
|
|
|
+ zipfile.ZipFile('update.zip').extractall('')
|
|
|
+
|
|
|
+ ok = os.system('xcopy /y /s /r opennamu-' + up_data + ' .')
|
|
|
+ if ok == 0:
|
|
|
+ os.system('rd /s /q opennamu-' + up_data)
|
|
|
+ os.system('del update.zip')
|
|
|
+ else:
|
|
|
print('Error : update failed')
|
|
|
-
|
|
|
- break
|
|
|
- elif platform.system() == 'Windows':
|
|
|
- os.system('rd /s /q route')
|
|
|
+ elif what_i_do == '20':
|
|
|
+ domain = input('Domain (EX : 2du.pythonanywhere.com) : ')
|
|
|
+
|
|
|
+ curs.execute(db_change('delete from other where name = "domain"'))
|
|
|
+ curs.execute(db_change('insert into other (name, data, coverage) values ("domain", ?, "")'), [domain])
|
|
|
+ elif what_i_do == '21':
|
|
|
+ tls_v = input('TLS (http) [http, https] : ')
|
|
|
+ if not tls_v in ['http', 'https']:
|
|
|
+ tls_v = 'http'
|
|
|
+
|
|
|
+ curs.execute(db_change('delete from other where name = "http_select"'))
|
|
|
+ curs.execute(db_change('insert into other (name, data, coverage) values ("http_select", ?, "")'), [tls_v])
|
|
|
+ elif what_i_do == '22':
|
|
|
+ curs.execute(db_change('delete from other where name = "body"'))
|
|
|
+ elif what_i_do == '23':
|
|
|
+ curs.execute(db_change('delete from other where name = "bottom_body"'))
|
|
|
+ elif what_i_do == '24':
|
|
|
+ load_db = get_db_connect('mysql')
|
|
|
+ mysql_conn = load_db.__enter__()
|
|
|
+ mysql_curs = mysql_conn.cursor()
|
|
|
|
|
|
- urllib.request.urlretrieve('https://github.com/opennamu/opennamu/archive/' + up_data + '.zip', 'update.zip')
|
|
|
-
|
|
|
- zipfile.ZipFile('update.zip').extractall('')
|
|
|
-
|
|
|
- ok = os.system('xcopy /y /s /r opennamu-' + up_data + ' .')
|
|
|
- if ok == 0:
|
|
|
- os.system('rd /s /q opennamu-' + up_data)
|
|
|
- os.system('del update.zip')
|
|
|
- else:
|
|
|
- print('Error : update failed')
|
|
|
-elif what_i_do == '20':
|
|
|
- domain = input('Domain (EX : 2du.pythonanywhere.com) : ')
|
|
|
-
|
|
|
- curs.execute(db_change('delete from other where name = "domain"'))
|
|
|
- curs.execute(db_change('insert into other (name, data, coverage) values ("domain", ?, "")'), [domain])
|
|
|
-elif what_i_do == '21':
|
|
|
- tls_v = input('TLS (http) [http, https] : ')
|
|
|
- if not tls_v in ['http', 'https']:
|
|
|
- tls_v = 'http'
|
|
|
-
|
|
|
- curs.execute(db_change('delete from other where name = "http_select"'))
|
|
|
- curs.execute(db_change('insert into other (name, data, coverage) values ("http_select", ?, "")'), [tls_v])
|
|
|
-elif what_i_do == '22':
|
|
|
- curs.execute(db_change('delete from other where name = "body"'))
|
|
|
-elif what_i_do == '23':
|
|
|
- curs.execute(db_change('delete from other where name = "bottom_body"'))
|
|
|
-elif what_i_do == '24':
|
|
|
- load_db = get_db_connect('mysql')
|
|
|
- mysql_conn = load_db.__enter__()
|
|
|
- mysql_curs = mysql_conn.cursor()
|
|
|
-
|
|
|
- load_db = get_db_connect('sqlite')
|
|
|
- sqlite_conn = load_db.__enter__()
|
|
|
- sqlite_curs = sqlite_conn.cursor()
|
|
|
-
|
|
|
- create_data = get_db_table_list()
|
|
|
- for create_table in create_data:
|
|
|
- create = ['test'] + create_data[create_table]
|
|
|
-
|
|
|
- create_r = ', '.join(['%s' for _ in create])
|
|
|
- create = ', '.join(create)
|
|
|
-
|
|
|
- mysql_curs.execute(db_change('delete from ' + create_table))
|
|
|
-
|
|
|
- sqlite_curs.execute(db_change('select ' + create + ' from ' + create_table))
|
|
|
- db_data = sqlite_curs.fetchall()
|
|
|
- if db_data:
|
|
|
- mysql_curs.executemany("insert into " + create_table + " (" + create + ") values (" + create_r + ")", db_data)
|
|
|
-elif what_i_do == '25':
|
|
|
- curs.execute(db_change("select distinct doc_name from data_set where doc_rev = 'not_exist' or doc_rev = ''"))
|
|
|
- for for_a in curs.fetchall():
|
|
|
- data_set_exist = ''
|
|
|
-
|
|
|
- curs.execute(db_change("select title from data where title = ?"), [for_a[0]])
|
|
|
- if not curs.fetchall():
|
|
|
- data_set_exist = 'not_exist'
|
|
|
-
|
|
|
- curs.execute(db_change("update data_set set doc_rev = ? where doc_name = ? and (doc_rev = '' or doc_rev = 'not_exist')"), [data_set_exist, for_a[0]])
|
|
|
-elif what_i_do == '26':
|
|
|
- up_data = input('Insert branch name (beta) [stable, beta, dev] : ')
|
|
|
-
|
|
|
- if not up_data in ['stable', 'beta', 'dev', 'dont_use']:
|
|
|
- up_data = 'beta'
|
|
|
-
|
|
|
- curs.execute(db_change('delete from other where name = "update"'))
|
|
|
- curs.execute(db_change('insert into other (name, data, coverage) values ("update", ?, "")'), [up_data])
|
|
|
-elif what_i_do == '27':
|
|
|
- port = int(input('Port : '))
|
|
|
-
|
|
|
- curs.execute(db_change("update other set data = ? where name = 'golang_port'"), [port])
|
|
|
-else:
|
|
|
- raise ValueError(what_i_do)
|
|
|
-
|
|
|
-if data_db_load == 'Y':
|
|
|
- try:
|
|
|
- conn.commit()
|
|
|
- except:
|
|
|
- pass
|
|
|
-
|
|
|
-print('OK')
|
|
|
+ load_db = get_db_connect('sqlite')
|
|
|
+ sqlite_conn = load_db.__enter__()
|
|
|
+ sqlite_curs = sqlite_conn.cursor()
|
|
|
+
|
|
|
+ create_data = get_db_table_list()
|
|
|
+ for create_table in create_data:
|
|
|
+ create = ['test'] + create_data[create_table]
|
|
|
+
|
|
|
+ create_r = ', '.join(['%s' for _ in create])
|
|
|
+ create = ', '.join(create)
|
|
|
+
|
|
|
+ mysql_curs.execute(db_change('delete from ' + create_table))
|
|
|
+
|
|
|
+ sqlite_curs.execute(db_change('select ' + create + ' from ' + create_table))
|
|
|
+ db_data = sqlite_curs.fetchall()
|
|
|
+ if db_data:
|
|
|
+ mysql_curs.executemany("insert into " + create_table + " (" + create + ") values (" + create_r + ")", db_data)
|
|
|
+ elif what_i_do == '25':
|
|
|
+ curs.execute(db_change("select distinct doc_name from data_set where doc_rev = 'not_exist' or doc_rev = ''"))
|
|
|
+ for for_a in curs.fetchall():
|
|
|
+ data_set_exist = ''
|
|
|
+
|
|
|
+ curs.execute(db_change("select title from data where title = ?"), [for_a[0]])
|
|
|
+ if not curs.fetchall():
|
|
|
+ data_set_exist = 'not_exist'
|
|
|
+
|
|
|
+ curs.execute(db_change("update data_set set doc_rev = ? where doc_name = ? and (doc_rev = '' or doc_rev = 'not_exist')"), [data_set_exist, for_a[0]])
|
|
|
+ elif what_i_do == '26':
|
|
|
+ up_data = input('Insert branch name (beta) [stable, beta, dev] : ')
|
|
|
+
|
|
|
+ if not up_data in ['stable', 'beta', 'dev', 'dont_use']:
|
|
|
+ up_data = 'beta'
|
|
|
+
|
|
|
+ curs.execute(db_change('delete from other where name = "update"'))
|
|
|
+ curs.execute(db_change('insert into other (name, data, coverage) values ("update", ?, "")'), [up_data])
|
|
|
+ elif what_i_do == '27':
|
|
|
+ port = int(input('Port : '))
|
|
|
+
|
|
|
+ curs.execute(db_change("update other set data = ? where name = 'golang_port'"), [port])
|
|
|
+ else:
|
|
|
+ raise ValueError(what_i_do)
|
|
|
+
|
|
|
+ if data_db_load == 'Y':
|
|
|
+ try:
|
|
|
+ conn.commit()
|
|
|
+ except:
|
|
|
+ pass
|
|
|
+
|
|
|
+ print('OK')
|
|
|
+
|
|
|
+if __name__ == "__main__":
|
|
|
+ asyncio.run(main())
|