mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [Update DB] remove indexErrors
This commit is contained in:
parent
bf92a2f22f
commit
a3167a740a
4 changed files with 27 additions and 21 deletions
|
@ -32,7 +32,6 @@ if __name__ == "__main__":
|
||||||
decode_responses=True)
|
decode_responses=True)
|
||||||
|
|
||||||
if r_serv.exists('ail:update_v1.5'):
|
if r_serv.exists('ail:update_v1.5'):
|
||||||
if ail_version == 'v1.5':
|
|
||||||
onions_update_status = r_serv.get('v1.5:onions')
|
onions_update_status = r_serv.get('v1.5:onions')
|
||||||
if onions_update_status is None:
|
if onions_update_status is None:
|
||||||
update_file = os.path.join(os.environ['AIL_HOME'], 'update', 'v1.4', 'Update-ARDB_Onions.py')
|
update_file = os.path.join(os.environ['AIL_HOME'], 'update', 'v1.4', 'Update-ARDB_Onions.py')
|
||||||
|
|
|
@ -31,7 +31,6 @@ def update_hash_item(has_type):
|
||||||
if r_serv_metadata.exists(hash_key):
|
if r_serv_metadata.exists(hash_key):
|
||||||
new_hash_key = hash_key.replace(PASTES_FOLDER, '', 1)
|
new_hash_key = hash_key.replace(PASTES_FOLDER, '', 1)
|
||||||
res = r_serv_metadata.renamenx(hash_key, new_hash_key)
|
res = r_serv_metadata.renamenx(hash_key, new_hash_key)
|
||||||
print(res)
|
|
||||||
if res == 0:
|
if res == 0:
|
||||||
print('same key, double name: {}'.format(item_path))
|
print('same key, double name: {}'.format(item_path))
|
||||||
# fusion
|
# fusion
|
||||||
|
@ -106,7 +105,7 @@ if __name__ == '__main__':
|
||||||
# update domain port
|
# update domain port
|
||||||
domain = r_serv_metadata.hget(new_item_metadata, 'domain')
|
domain = r_serv_metadata.hget(new_item_metadata, 'domain')
|
||||||
if domain:
|
if domain:
|
||||||
if domain[-3:] ?= ':80':
|
if domain[-3:] != ':80':
|
||||||
r_serv_metadata.hset(new_item_metadata, 'domain', '{}:80'.format(domain))
|
r_serv_metadata.hset(new_item_metadata, 'domain', '{}:80'.format(domain))
|
||||||
super_father = r_serv_metadata.hget(new_item_metadata, 'super_father')
|
super_father = r_serv_metadata.hget(new_item_metadata, 'super_father')
|
||||||
if super_father:
|
if super_father:
|
||||||
|
|
|
@ -107,7 +107,11 @@ if __name__ == '__main__':
|
||||||
print('onion_history:{}:{}'.format(onion_domain, date_history))
|
print('onion_history:{}:{}'.format(onion_domain, date_history))
|
||||||
item_father = r_serv_onion.lrange('onion_history:{}:{}'.format(onion_domain, date_history), 0, 0)
|
item_father = r_serv_onion.lrange('onion_history:{}:{}'.format(onion_domain, date_history), 0, 0)
|
||||||
print('item_father: {}'.format(item_father))
|
print('item_father: {}'.format(item_father))
|
||||||
|
try:
|
||||||
item_father = item_father[0]
|
item_father = item_father[0]
|
||||||
|
except IndexError:
|
||||||
|
r_serv_onion.delete('onion_history:{}:{}'.format(onion_domain, date_history))
|
||||||
|
continue
|
||||||
#print(item_father)
|
#print(item_father)
|
||||||
# delete old history
|
# delete old history
|
||||||
r_serv_onion.delete('onion_history:{}:{}'.format(onion_domain, date_history))
|
r_serv_onion.delete('onion_history:{}:{}'.format(onion_domain, date_history))
|
||||||
|
|
|
@ -85,7 +85,11 @@ if __name__ == '__main__':
|
||||||
splitted_item_path = item_path.split('/')
|
splitted_item_path = item_path.split('/')
|
||||||
#print(tag)
|
#print(tag)
|
||||||
#print(item_path)
|
#print(item_path)
|
||||||
|
try:
|
||||||
item_date = int( ''.join([splitted_item_path[-4], splitted_item_path[-3], splitted_item_path[-2]]) )
|
item_date = int( ''.join([splitted_item_path[-4], splitted_item_path[-3], splitted_item_path[-2]]) )
|
||||||
|
except IndexError:
|
||||||
|
r_serv_tag.srem(tag, item_path)
|
||||||
|
continue
|
||||||
|
|
||||||
# remove absolute path
|
# remove absolute path
|
||||||
new_path = item_path.replace(PASTES_FOLDER, '', 1)
|
new_path = item_path.replace(PASTES_FOLDER, '', 1)
|
||||||
|
|
Loading…
Reference in a new issue