mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-19 10:51:34 +08:00
77 lines
3.0 KiB
Python
Executable File
77 lines
3.0 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os, sys
|
|
from ConfigParser import ConfigParser
|
|
from optparse import OptionParser
|
|
|
|
parser = OptionParser()
|
|
parser.add_option( '-c', '--config', dest='config', help='Path to Galaxy config file (universe_wsgi.ini)', default='universe_wsgi.ini' )
|
|
parser.add_option( '-u', '--username', dest='username', help='Username of user to update', default='all' )
|
|
parser.add_option( '-e', '--email', dest='email', help='Email address of user to update', default='all' )
|
|
parser.add_option( '--dry-run', dest='dryrun', help='Dry run (show changes but do not save to database)', action='store_true', default=False )
|
|
( options, args ) = parser.parse_args()
|
|
|
|
def init():
|
|
|
|
options.config = os.path.abspath( options.config )
|
|
if options.username == 'all':
|
|
options.username = None
|
|
if options.email == 'all':
|
|
options.email = None
|
|
|
|
os.chdir( os.path.dirname( options.config ) )
|
|
sys.path.append( 'lib' )
|
|
|
|
from galaxy import eggs
|
|
import pkg_resources
|
|
|
|
config = ConfigParser( dict( file_path = 'database/files',
|
|
database_connection = 'sqlite:///database/universe.sqlite?isolation_level=IMMEDIATE' ) )
|
|
config.read( os.path.basename( options.config ) )
|
|
|
|
from galaxy.model import mapping
|
|
|
|
return mapping.init( config.get( 'app:main', 'file_path' ), config.get( 'app:main', 'database_connection' ), create_tables = False )
|
|
|
|
def quotacheck( sa_session, users ):
|
|
sa_session.refresh( user )
|
|
current = user.get_disk_usage()
|
|
print user.username, '<' + user.email + '> current usage:', str( current ) + ',',
|
|
new = user.calculate_disk_usage()
|
|
sa_session.refresh( user )
|
|
# usage changed while calculating, do it again
|
|
if user.get_disk_usage() != current:
|
|
print 'usage changed while calculating, trying again...'
|
|
return quotacheck( sa_session, user )
|
|
# yes, still a small race condition between here and the flush
|
|
if new == current:
|
|
print 'no change'
|
|
else:
|
|
print 'new:', new
|
|
if not options.dryrun:
|
|
user.set_disk_usage( new )
|
|
sa_session.add( user )
|
|
sa_session.flush()
|
|
|
|
if __name__ == '__main__':
|
|
print 'Loading Galaxy model...'
|
|
model = init()
|
|
sa_session = model.context.current
|
|
|
|
if not options.username and not options.email:
|
|
user_count = sa_session.query( model.User ).count()
|
|
print 'Processing %i users...' % user_count
|
|
for i, user in enumerate( sa_session.query( model.User ).enable_eagerloads( False ).yield_per( 1000 ) ):
|
|
print '%3i%%' % int( float(i) / user_count * 100 ),
|
|
quotacheck( sa_session, user )
|
|
print '100% complete'
|
|
sys.exit( 0 )
|
|
elif options.username:
|
|
user = sa_session.query( model.User ).enable_eagerloads( False ).filter_by( username=options.username ).first()
|
|
elif options.email:
|
|
user = sa_session.query( model.User ).enable_eagerloads( False ).filter_by( email=options.email ).first()
|
|
if not user:
|
|
print 'User not found'
|
|
sys.exit( 1 )
|
|
quotacheck( sa_session, user )
|