-
Notifications
You must be signed in to change notification settings - Fork 12
/
model.py
192 lines (164 loc) · 7.1 KB
/
model.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
from google.appengine.api import users
from google.appengine.ext import db
from google.appengine.ext.db import Model as DBModel
from datetime import datetime
from demisaucepy.django_helper import AggregatorMeta
from demisaucepy.declarative import has_a, has_many, \
aggregator_callable, make_declarative
from demisaucepy import cfg
class BaseModel(db.Model):
def __init__(self, parent=None, key_name=None, _app=None, **kwds):
self.__isdirty = False
DBModel.__init__(self, parent=None, key_name=None, _app=None, **kwds)
def __setattr__(self,attrname,value):
"""
DataStore api stores all prop values say "email" is stored in "_email" so
we intercept the set attribute, see if it has changed, then check for an
onchanged method for that property to call
"""
if (attrname.find('_') != 0):
if hasattr(self,'_' + attrname):
curval = getattr(self,'_' + attrname)
if curval != value:
self.__isdirty = True
if hasattr(self,attrname + '_onchange'):
getattr(self,attrname + '_onchange')(curval,value)
DBModel.__setattr__(self,attrname,value)
class GAEMeta(BaseModel,AggregatorMeta): pass
class Cache(db.Model):
cachekey = db.StringProperty(multiline=False)
content = db.TextProperty()
class Blog(db.Model):
owner = db.UserProperty()
description = db.TextProperty()
baseurl = db.StringProperty(multiline=False,default='http://yourapp.appspot.com')
urlpath = db.StringProperty(multiline=False)
title = db.StringProperty(multiline=False)
subtitle = db.StringProperty(multiline=False)
entrycount = db.IntegerProperty(default=0)
feedurl = db.StringProperty(multiline=False,default='http://feeds.feedburner.com/yoursitesname')
blogversion = db.StringProperty(multiline=False,default='1.15')
layout = db.StringProperty(multiline=False,default='2cola',choices=[
'3cola', '3colb', '2cola','2colb'])
theme = db.StringProperty(multiline=False,default='potlatch.css')
area1 = db.TextProperty(default='')
area2 = db.TextProperty(default='')
area3 = db.TextProperty(default='')
sidebar = db.TextProperty(default='')
topmenu = db.StringProperty(multiline=True,default='')
archivehtml = db.TextProperty(default='')
tags = db.TextProperty(default='{}')
analyticsjs = db.TextProperty(default='')
commentjs = db.TextProperty(default='')
dsapikey = db.StringProperty(multiline=False)
dsappname = db.StringProperty(multiline=False)
def save(self):
self.put()
def initialsetup(self):
self.title = 'Your Blog Title'
self.subtitle = 'Your Blog Subtitle'
self.area1 = '<h3>Lower Left Title</h3>\nContent in lower left'
self.area2 = '<h3>Center Bottom Box</h3>\nContent in center footer'
self.area3 = '<h3>Right Footer</h3>\nContent in footer right'
class Archive(db.Model):
blog = db.ReferenceProperty(Blog)
monthyear = db.StringProperty(multiline=False)
"""March-08"""
entrycount = db.IntegerProperty(default=0)
date = db.DateTimeProperty(auto_now_add=True)
class Tag(db.Model):
blog = db.ReferenceProperty(Blog)
tag = db.StringProperty(multiline=False)
tagcount = db.IntegerProperty(default=0)
class Link(db.Model):
blog = db.ReferenceProperty(Blog)
href = db.StringProperty(multiline=False,default='')
linktype = db.StringProperty(multiline=False,default='blogroll')
linktext = db.StringProperty(multiline=False,default='')
class Entry(BaseModel):
#__metaclass__ = GAEMeta
author = db.UserProperty()
blog = db.ReferenceProperty(Blog)
published = db.BooleanProperty(default=False)
content = db.TextProperty(default='')
title = db.StringProperty(multiline=False,default='')
date = db.DateTimeProperty(auto_now_add=True)
tags = db.ListProperty(db.Category)
slug = db.StringProperty(multiline=False,default='')
monthyear = db.StringProperty(multiline=False)
entrytype = db.StringProperty(multiline=False,default='post',choices=[
'post','page'])
commentcount = db.IntegerProperty(default=0)
comments = has_many(name='comment',lazy=True,local_key='slug' )
phphello = has_a(name='helloworld',app='phpdemo',lazy=True,local_key='slug' )
def published_onchange(self,curval,newval):
if self.entrytype == 'post':
my = self.date.strftime('%b-%Y') # May-2008
archive = Archive.all().filter('monthyear',my).fetch(10)
if curval == False and newval == True:
# add to archive
if archive == []: # new month
archive = Archive(blog=self.blog,monthyear=my)
else:
archive = archive[0]
archive.entrycount += 1
archive.put()
self.blog.entrycount += 1
else:
# remove from archive
if archive and archive[0]:
archive = archive[0]
archive.entrycount -= 1
if archive.entrycount == 0:
archive.delete()
else:
archive.put()
self.blog.entrycount -= 1
self.blog.save()
def get_tags(self):
'''comma delimted list of tags'''
return ','.join([tag for tag in self.tags])
def set_tags(self, tags):
if tags:
tagstemp = [db.Category(tag.strip()) for tag in tags.split(',')]
self.tagsnew = [tag for tag in tagstemp if not tag in self.tags]
self.tags = tagstemp
tagswcommas = property(get_tags,set_tags)
def update_archive(self):
"""Checks to see if there is a month-year entry for the
month of current blog, if not creates it and increments count"""
my = self.date.strftime('%b-%Y') # May-2008
archive = Archive.all().filter('monthyear',my).fetch(10)
if self.entrytype == 'post':
if archive == []:
archive = Archive(blog=self.blog,monthyear=my)
self.monthyear = my
archive.put()
else:
# ratchet up the count
archive[0].entrycount += 1
archive[0].put()
def update_tags(self):
"""Update Tag cloud info"""
#b = self.blog
#print b.tags
#for tag in self.tagsnew:
# if not b.tags.has_key(tag):
# b.tags.update({tag:1})
# else:
# b.tags.update({tag:b.tags[tag]+1})
pass
def save(self):
"""
Use this instead of self.put(), as we do some other work here
"""
#TODO for each tag ensure it has a tag
self.update_tags()
my = self.date.strftime('%b-%Y') # May-2008
self.monthyear = my
self.put()
@classmethod
def allpublished(cls,type='post'):
return Entry.all().filter('entrytype =',type
).filter("published =", True).order('-date')
make_declarative(Entry.__dict__)