forked from indymedia/epicyon
Tidying
parent
c68ae15402
commit
11f218d532
21
epicyon.py
21
epicyon.py
|
@ -326,12 +326,12 @@ parser.add_argument('--image', '--background', dest='backgroundImage',
|
||||||
parser.add_argument('--archive', dest='archive', type=str,
|
parser.add_argument('--archive', dest='archive', type=str,
|
||||||
default=None,
|
default=None,
|
||||||
help='Archive old files to the given directory')
|
help='Archive old files to the given directory')
|
||||||
parser.add_argument('--archiveweeks', dest='archiveWeeks', type=str,
|
parser.add_argument('--archiveweeks', dest='archiveWeeks', type=int,
|
||||||
default=None,
|
default=4,
|
||||||
help='Specify the number of weeks after which ' +
|
help='Specify the number of weeks after which ' +
|
||||||
'data will be archived')
|
'media will be archived')
|
||||||
parser.add_argument('--maxposts', dest='archiveMaxPosts', type=str,
|
parser.add_argument('--maxposts', dest='archiveMaxPosts', type=int,
|
||||||
default=None,
|
default=32000,
|
||||||
help='Maximum number of posts in in/outbox')
|
help='Maximum number of posts in in/outbox')
|
||||||
parser.add_argument('--minimumvotes', dest='minimumvotes', type=int,
|
parser.add_argument('--minimumvotes', dest='minimumvotes', type=int,
|
||||||
default=1,
|
default=1,
|
||||||
|
@ -1574,13 +1574,6 @@ if args.changepassword:
|
||||||
print('Passwords file not found')
|
print('Passwords file not found')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
archiveWeeks = 4
|
|
||||||
if args.archiveWeeks:
|
|
||||||
archiveWeeks = args.archiveWeeks
|
|
||||||
archiveMaxPosts = 32000
|
|
||||||
if args.archiveMaxPosts:
|
|
||||||
archiveMaxPosts = args.archiveMaxPosts
|
|
||||||
|
|
||||||
if args.archive:
|
if args.archive:
|
||||||
if args.archive.lower().endswith('null') or \
|
if args.archive.lower().endswith('null') or \
|
||||||
args.archive.lower().endswith('delete') or \
|
args.archive.lower().endswith('delete') or \
|
||||||
|
@ -1589,8 +1582,8 @@ if args.archive:
|
||||||
print('Archiving with deletion of old posts...')
|
print('Archiving with deletion of old posts...')
|
||||||
else:
|
else:
|
||||||
print('Archiving to ' + args.archive + '...')
|
print('Archiving to ' + args.archive + '...')
|
||||||
archiveMedia(baseDir, args.archive, archiveWeeks)
|
archiveMedia(baseDir, args.archive, args.archiveWeeks)
|
||||||
archivePosts(baseDir, httpPrefix, args.archive, {}, archiveMaxPosts)
|
archivePosts(baseDir, httpPrefix, args.archive, {}, args.archiveMaxPosts)
|
||||||
print('Archiving complete')
|
print('Archiving complete')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
|
|
3
media.py
3
media.py
|
@ -199,6 +199,9 @@ def attachMedia(baseDir: str, httpPrefix: str, domain: str, port: int,
|
||||||
def archiveMedia(baseDir: str, archiveDirectory: str, maxWeeks=4) -> None:
|
def archiveMedia(baseDir: str, archiveDirectory: str, maxWeeks=4) -> None:
|
||||||
"""Any media older than the given number of weeks gets archived
|
"""Any media older than the given number of weeks gets archived
|
||||||
"""
|
"""
|
||||||
|
if maxWeeks == 0:
|
||||||
|
return
|
||||||
|
|
||||||
currTime = datetime.datetime.utcnow()
|
currTime = datetime.datetime.utcnow()
|
||||||
weeksSinceEpoch = int((currTime - datetime.datetime(1970, 1, 1)).days/7)
|
weeksSinceEpoch = int((currTime - datetime.datetime(1970, 1, 1)).days/7)
|
||||||
minWeek = weeksSinceEpoch - maxWeeks
|
minWeek = weeksSinceEpoch - maxWeeks
|
||||||
|
|
4
posts.py
4
posts.py
|
@ -3144,9 +3144,13 @@ def archivePosts(baseDir: str, httpPrefix: str, archiveDir: str,
|
||||||
maxPostsInBox=32000) -> None:
|
maxPostsInBox=32000) -> None:
|
||||||
"""Archives posts for all accounts
|
"""Archives posts for all accounts
|
||||||
"""
|
"""
|
||||||
|
if maxPostsInBox == 0:
|
||||||
|
return
|
||||||
|
|
||||||
if archiveDir:
|
if archiveDir:
|
||||||
if not os.path.isdir(archiveDir):
|
if not os.path.isdir(archiveDir):
|
||||||
os.mkdir(archiveDir)
|
os.mkdir(archiveDir)
|
||||||
|
|
||||||
if archiveDir:
|
if archiveDir:
|
||||||
if not os.path.isdir(archiveDir + '/accounts'):
|
if not os.path.isdir(archiveDir + '/accounts'):
|
||||||
os.mkdir(archiveDir + '/accounts')
|
os.mkdir(archiveDir + '/accounts')
|
||||||
|
|
Loading…
Reference in New Issue