forked from swirlai/swirl-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpirer.py
63 lines (53 loc) · 2.04 KB
/
expirer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'''
@author: Sid Probstein
@contact: sid@swirl.today
'''
from sys import path
from os import environ
import logging as logger
logger.basicConfig(level=logger.INFO)
from datetime import timedelta
import django
from django.utils import timezone
from swirl.utils import swirl_setdir
path.append(swirl_setdir()) # path to settings.py file
environ.setdefault('DJANGO_SETTINGS_MODULE', 'swirl_server.settings')
django.setup()
from swirl.models import Search
module_name = 'expirer.py'
##################################################
##################################################
def expirer():
'''
This fires whenever a Celery Beat event arrives
Remove searches that are past expiration date, if expiration is not 0
'''
# security review for 1.7 - OK - system function
searches = Search.objects.filter(retention__gt=0)
for search in searches:
logger.debug(f"{module_name}: expirer checking: {search.id}")
if search.retention == 0:
# don't delete - this should not happen because of the filter above
logger.warning(f"{module_name}: filter error, reviewed a search with retention = {search.retention}")
continue
else:
expired = False
if search.retention == 1:
if search.date_updated + timedelta(hours=1) < timezone.now():
expired = True
elif search.retention == 2:
if search.date_updated + timedelta(days=1) < timezone.now():
expired = True
elif search.retention == 3:
if search.date_updated + timedelta(month=1) < timezone.now():
expired = True
else:
logger.error(f"{module_name}: unexpected retention setting: {search.retention}")
if expired:
# to do: fix this to show local time, someday P4
logger.info(f"{module_name}: expirer deleted {search.id}")
search.delete()
# end if
# end if
# end for
return True