summaryrefslogtreecommitdiffstats
path: root/store/management/commands/expire-downloads.py
blob: 3f1390053d00fd4c981e5e5579d18d27be105132 (plain)
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
import os
import time

from django.core.management.base import BaseCommand, CommandError
from django.conf import settings

from store.utilities import downloadPath

class Command(BaseCommand):
    help = 'Expires all downloads that are older than 10 minutes'

    def handle(self, *args, **options):
        self.stdout.write('Removing expired download packages')
        pkgPath = downloadPath()
        if not os.path.exists(pkgPath):
            os.makedirs(pkgPath)

        for pkg in os.listdir(pkgPath):
            t = os.path.getmtime(pkgPath + pkg)
            age = time.time() - t
            if age > (10 * 60):
               os.remove(pkgPath + pkg)
               self.stdout.write(' -> %s (age: %s seconds)' % (pkg, int(age)))

        self.stdout.write('Done')