aboutsummaryrefslogtreecommitdiffstats
path: root/servo/management/commands/periodic.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2016-05-01 23:54:58 +0300
committerFilipp Lepalaan <filipp@mac.com>2016-05-01 23:54:58 +0300
commit47cc21441b437fe148c72bd181059728b47bdf9b (patch)
treecd96c0a704cb31837c6e0b2e9affe998d24acd7b /servo/management/commands/periodic.py
parent65df597329bbb602dd382695c639aab3776123ea (diff)
parent82e1fe63447f5c4d33d8a3ed7c365e7eab1006c0 (diff)
downloadServo-47cc21441b437fe148c72bd181059728b47bdf9b.tar.gz
Servo-47cc21441b437fe148c72bd181059728b47bdf9b.tar.bz2
Servo-47cc21441b437fe148c72bd181059728b47bdf9b.zip
Merge branch 'develop'
Diffstat (limited to 'servo/management/commands/periodic.py')
-rw-r--r--servo/management/commands/periodic.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/servo/management/commands/periodic.py b/servo/management/commands/periodic.py
new file mode 100644
index 0000000..e85f9a3
--- /dev/null
+++ b/servo/management/commands/periodic.py
@@ -0,0 +1,51 @@
+# -*- coding: utf-8 -*-
+
+import os
+import sys
+import gsxws
+import subprocess
+from time import strftime
+from django.conf import settings
+from django.core.cache import caches
+from django.core.management.base import BaseCommand
+
+from servo.models import GsxAccount, Article
+
+
+class Command(BaseCommand):
+ help = 'Peforms periodic commands'
+ VERBS = ('comptia', 'articles',)
+
+ def add_arguments(self, parser):
+ parser.add_argument('verb', type=str, choices=self.VERBS, help='Periodic command to perform')
+
+ def handle(self, *args, **options):
+ try:
+ act = GsxAccount.fallback()
+ except Exception as e:
+ print >> sys.stderr, 'Failed to connect to GSX (%s)' % e
+ sys.exit(-1)
+
+ if 'articles' in options['verb']: # Update GSX articles
+ articles = gsxws.comms.fetch()
+ for a in articles:
+ try:
+ article = Article.from_gsx(a)
+ try:
+ content = gsxws.comms.content(article.gsx_id)
+ article.content = content.articleContent
+ except Exception as e:
+ pass
+ article.save()
+ except ValueError as e:
+ pass
+
+ if 'comptia' in options['verb']: # Update raw CompTIA data (all product groups)
+ try:
+ codes = gsxws.comptia.fetch()
+ caches['comptia'].set('codes', codes)
+ except Exception as e:
+ print >> sys.stderr, 'Failed to fetch CompTIA codes (%s)' % e
+ sys.exit(-1)
+
+ exit(0)