Skip to content

Commit

Permalink
fixes web2py#1309 (and sessions2trash.py, too)
Browse files Browse the repository at this point in the history
  • Loading branch information
niphlod committed Sep 21, 2016
1 parent 075f493 commit dd8b076
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 24 deletions.
25 changes: 16 additions & 9 deletions applications/admin/cron/expire_sessions.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
EXPIRATION_MINUTES=60
DIGITS=('0','1','2','3','4','5','6','7','8','9')
import os, time, stat, cPickle, logging
path = os.path.join(request.folder,'sessions')

import os, time, stat, logging
from gluon._compat import pickle

EXPIRATION_MINUTES = 60

path = os.path.join(request.folder, 'sessions')
if not os.path.exists(path):
os.mkdir(path)
now = time.time()
for filename in os.listdir(path):
fullpath=os.path.join(path,filename)
if os.path.isfile(fullpath) and filename.startswith(DIGITS):
for path, dirs, files in os.walk(path, topdown=False):
for x in files:
fullpath = os.path.join(path, x)
try:
filetime = os.stat(fullpath)[stat.ST_MTIME] # get it before our io
filetime = os.stat(fullpath)[stat.ST_MTIME] # get it before our io
try:
session_data = cPickle.load(open(fullpath, 'rb+'))
session_data = pickle.load(open(fullpath, 'rb+'))
expiration = session_data['auth']['expiration']
except:
expiration = EXPIRATION_MINUTES * 60
if (now - filetime) > expiration:
os.unlink(fullpath)
except:
logging.exception('failure to check %s' % fullpath)
for d in dirs:
dd = os.path.join(path, d)
if not os.listdir(dd):
os.rmdir(dd)
26 changes: 11 additions & 15 deletions scripts/sessions2trash.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,14 @@ def delete_sessions():

from __future__ import with_statement

import sys
import os
sys.path.append(os.path.join(*__file__.split(os.sep)[:-2] or ['.']))

from gluon import current
from gluon.storage import Storage
from gluon._compat import pickle
from optparse import OptionParser
import cPickle
import datetime
import os
import stat
import time
import os

EXPIRATION_MINUTES = 60
SLEEP_MINUTES = 5
Expand Down Expand Up @@ -86,12 +82,12 @@ def trash(self):
status = 'trashed'

if self.verbose > 1:
print 'key: %s' % str(item)
print 'expiration: %s seconds' % self.expiration
print 'last visit: %s' % str(last_visit)
print 'age: %s seconds' % age
print 'status: %s' % status
print ''
print('key: %s' % str(item))
print('expiration: %s seconds' % self.expiration)
print('last visit: %s' % str(last_visit))
print('age: %s seconds' % age)
print('status: %s' % status)
print('')
elif self.verbose > 0:
print('%s %s' % (str(item), status))

Expand Down Expand Up @@ -145,7 +141,7 @@ def delete(self):

def get(self):
session = Storage()
session.update(cPickle.loads(self.row.session_data))
session.update(pickle.loads(self.row.session_data))
return session

def last_visit_default(self):
Expand All @@ -155,7 +151,7 @@ def last_visit_default(self):
try:
return datetime.datetime.strptime(self.row.modified_datetime, '%Y-%m-%d %H:%M:%S.%f')
except:
print 'failed to retrieve last modified time (value: %s)' % self.row.modified_datetime
print('failed to retrieve last modified time (value: %s)' % self.row.modified_datetime)

def __str__(self):
return self.row.unique_key
Expand Down Expand Up @@ -248,7 +244,7 @@ def main():
break
else:
if options.verbose:
print 'Sleeping %s seconds' % (options.sleep)
print('Sleeping %s seconds' % (options.sleep))
time.sleep(options.sleep)

if __name__ == '__main__':
Expand Down

0 comments on commit dd8b076

Please sign in to comment.