| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- # Load
- import time
- import os
- import platform
- import urllib
- import zipfile
- import urllib.request
- from route.tool.func import *
- while True:
- data_db_load = input('Load DB (Y) [Y, N] : ')
- data_db_load = data_db_load.upper()
- if data_db_load in ('Y', 'N'):
- break
- if data_db_load == 'Y':
- data_db_set = class_check_json()
- db_data_get(data_db_set['type'])
- do_db_set(data_db_set)
- load_db = get_db_connect()
- conn = load_db.__enter__()
- curs = conn.cursor()
- else:
- print('----')
- print('You can use [9, 11, 19]')
- # Main
- print('----')
- print('1. Backlink reset')
- print('2. reCAPTCHA delete')
- print('3. Ban delete')
- print('4. Change host')
- print('5. Change port')
- print('6. Change skin')
- print('7. Change password')
- print('8. Change version')
- print('9. Delete set.json')
- print('10. Change name')
- print('11. Delete mysql.json')
- print('12. All title count reset')
- print('14. Delete Main <HEAD>')
- print('15. Give owner')
- print('16. Delete 2FA password')
- print('17. Change markup')
- print('18. Change wiki access password')
- print('19. Forced update')
- print('20. Change domain')
- print('21. Change TLS')
- print('22. Delete body top')
- print('23. Delete body bottom')
- print('----')
- what_i_do = input('Select : ')
- if what_i_do == '1':
- print('----')
- go_num = input('All delete (Y) [Y, N] : ')
- if not go_num == 'N':
- curs.execute(db_change("delete from back"))
- conn.commit()
- print('----')
- try:
- go_num = int(input('Count (100) : '))
- except ValueError:
- go_num = 100
- num = 0
- print('----')
- print('Load...')
- curs.execute(
- db_change(
- "select title from data d "
- "where not exists ("
- "select title from back where link = d.title limit 1"
- ")"
- ""
- )
- )
- title = curs.fetchall()
- print('----')
- print('Rest : ' + str(len(title)))
- print('Start : ' + title[0][0])
- time.sleep(1)
- print('----')
- for name in title:
- num += 1
- if num % go_num == 0:
- print(str(num) + ' : ' + name[0])
- if num % 100 == 0:
- conn.commit()
- curs.execute(db_change("select data from data where title = ?"), [name[0]])
- data = curs.fetchall()
- class_do_render(conn).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':
- print('----')
- user_data = input('IP or Name : ')
- curs.execute(
- db_change(
- "insert into rb (block, end, today, blocker, why, band) "
- "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':
- print('----')
- host = input('Host : ')
- curs.execute(db_change("update other set data = ? where name = 'host'"), [host])
- elif what_i_do == '5':
- print('----')
- port = int(input('Port : '))
- curs.execute(db_change("update other set data = ? where name = 'port'"), [port])
- elif what_i_do == '6':
- print('----')
- skin = input('Skin name : ')
- curs.execute(db_change("update other set data = ? where name = 'skin'"), [skin])
- elif what_i_do == '7':
- print('----')
- user_name = input('User name : ')
- print('----')
- user_pw = input('User password : ')
- hashed = pw_encode(user_pw)
- curs.execute(db_change("update user_set set data = ? where id = ? and name = 'pw'"), [
- hashed,
- user_name
- ])
- elif what_i_do == '8':
- print('----')
- 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':
- print('----')
- user_name = input('User name : ')
- print('----')
- 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 == '12':
- curs.execute(db_change("select count(*) from data"))
- count_data = curs.fetchall()
- if count_data:
- count_data = count_data[0][0]
- else:
- count_data = 0
- curs.execute(db_change('delete from other where name = "count_all_title"'))
- curs.execute(db_change('insert into other (name, data, coverage) values ("count_all_title", ?, "")'), [str(count_data)])
- elif what_i_do == '14':
- curs.execute(db_change('delete from other where name = "head"'))
- elif what_i_do == '15':
- print('----')
- 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':
- print('----')
- 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':
- print('----')
- markup = input('Markup name : ')
- curs.execute(db_change("update other set data = ? where name = 'markup'"), [markup])
- elif what_i_do == '18':
- print('----')
- 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':
- print('----')
- up_data = input('Insert branch (beta) [stable, beta, dev] : ')
- if not up_data in ['stable', 'beta', 'dev']:
- up_data = 'beta'
- if platform.system() == 'Linux':
- 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 origin ' + up_data)]
- ok += [os.system('git reset --hard origin/' + up_data)]
- if (ok[0] and ok[1] and ok[2] and ok[3]) != 0:
- print('Error : update failed')
- 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')
- elif what_i_do == '20':
- print('----')
- 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':
- print('----')
- 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"'))
- else:
- raise ValueError(what_i_do)
- if data_db_load == 'Y':
- conn.commit()
- print('----')
- print('OK')
|