summaryrefslogtreecommitdiff
path: root/app/photos/build.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2015-12-15 20:41:56 -0500
committerluxagraf <sng@luxagraf.net>2015-12-15 20:41:56 -0500
commit7c467958611eadf05f69268818f3d6eb45573516 (patch)
tree5f6f8c20561d8f532742ed8e115fc61ebc1a7ebf /app/photos/build.py
parent6c5a2ba002d78322febfc404ad76b77bcee3986f (diff)
added builder function for private galleries
Diffstat (limited to 'app/photos/build.py')
-rw-r--r--app/photos/build.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/photos/build.py b/app/photos/build.py
new file mode 100644
index 0000000..15a649e
--- /dev/null
+++ b/app/photos/build.py
@@ -0,0 +1,30 @@
+import os
+from django.core.urlresolvers import reverse
+from builder.base import BuildNew
+
+
+class BuildLuxPhotos(BuildNew):
+
+ def build(self):
+ self.build_detail_view()
+
+ def get_model_queryset(self):
+ return self.model.objects.all()
+
+ def build_detail_view(self):
+ '''
+ write out all the expenses for each trip
+ '''
+ for obj in self.get_model_queryset():
+ url = obj.get_absolute_url()
+ path, slug = os.path.split(url)
+ path = '%s/' % path
+ # write html
+ response = self.client.get(url)
+ print(path, slug)
+ self.write_file(path, response.content, filename=slug)
+
+
+def builder():
+ j = BuildLuxPhotos("photos", "LuxGallery")
+ j.build()