mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Migrate dice db to new network-prefix user names
This commit is contained in:
parent
ea25e9d41b
commit
48476969d3
1 changed files with 22 additions and 2 deletions
24
tipbot.py
24
tipbot.py
|
@ -318,16 +318,36 @@ def OnCommandProxy(link,cmd):
|
|||
log_error('Exception running command %s: %s' % (str(cmd),str(e)))
|
||||
link.batch_send_done()
|
||||
|
||||
def MigrateBalances():
|
||||
def MigrateRedis():
|
||||
balances=redis_hgetall('balances')
|
||||
for balance in balances:
|
||||
if balance.find(':') == -1:
|
||||
redis_hset('balances','freenode:'+balance,balances[balance])
|
||||
redis_hdel('balances',balance)
|
||||
|
||||
keys=redisdb.keys('*')
|
||||
for key in keys:
|
||||
if key.startswith('dice:stats:') and key.find('freenode:') == -1:
|
||||
if key!="dice:stats:" and key!="dice:stats:*":
|
||||
parts=key.split(':')
|
||||
if len(parts)==3 or (len(parts)==4 and parts[2]=="reset"):
|
||||
parts.insert(len(parts)-1,"freenode")
|
||||
newkey=":".join(parts)
|
||||
log_info('renaming %s to %s' % (key,newkey))
|
||||
redisdb.rename(key,newkey)
|
||||
for recordtype in ['playerseed', 'serverseed', 'rolls']:
|
||||
hname='dice:%s'%recordtype
|
||||
keys=redisdb.hgetall(hname)
|
||||
for key in keys:
|
||||
if key.find(':') == -1:
|
||||
newkey='freenode:'+key
|
||||
log_info('renaming field %s to %s in %s' % (key,newkey,hname))
|
||||
redisdb.hset(hname,newkey,redisdb.hget(hname,key))
|
||||
redisdb.hdel(hname,key)
|
||||
|
||||
RegisterCommands()
|
||||
redisdb = connect_to_redis(config.redis_host,config.redis_port)
|
||||
MigrateBalances()
|
||||
MigrateRedis()
|
||||
InitScanBlockHeight()
|
||||
|
||||
# TODO: make this be created when the module is loaded
|
||||
|
|
Loading…
Reference in a new issue