mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00

This allows all models inherited from PgModel to specify which URLs to purge by either setting a field or defining a function called purge_urls, at which point they will be purged whenever the save signal is fired. Also implements a form under /admin/purge/ that allows for manual purging. This should probably be extended in the future to show the status of the pgq slaves, but that will come later. Includes a SQL function that posts the expires to a pgq queue. For a local deployment, this can be replaced with a simple void function to turn off varnish purging.
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
from pgweb.util.bases import PgModel
|
|
from pgweb.core.models import Version
|
|
|
|
from datetime import datetime
|
|
|
|
class DocPage(models.Model):
|
|
id = models.AutoField(null=False, primary_key=True)
|
|
file = models.CharField(max_length=64, null=False, blank=False)
|
|
version = models.DecimalField(max_digits=3, decimal_places=1, null=False)
|
|
title = models.CharField(max_length=256, null=True, blank=True)
|
|
content = models.TextField(null=True, blank=True)
|
|
|
|
class Meta:
|
|
db_table = 'docs'
|
|
|
|
class DocComment(PgModel, models.Model):
|
|
version = models.DecimalField(max_digits=3, decimal_places=1, null=False)
|
|
file = models.CharField(max_length=64, null=False, blank=False)
|
|
comment = models.TextField(null=False, blank=False)
|
|
posted_at = models.DateTimeField(null=False, blank=False, default=datetime.now())
|
|
submitter = models.ForeignKey(User, null=False)
|
|
approved = models.BooleanField(blank=False, default=False)
|
|
|
|
send_notification = True
|
|
|
|
def purge_urls(self):
|
|
yield '/docs/%s/interactive/%s' % (self.version, self.file)
|
|
try:
|
|
if Version.objects.get(tree=self.version).current:
|
|
yield '/docs/current/interactive/%s' % self.file
|
|
except Version.DoesNotExist:
|
|
pass
|
|
|
|
class Meta:
|
|
ordering = ('-posted_at',)
|
|
|
|
@property
|
|
def poster(self):
|
|
if self.submitter_id > 0:
|
|
print self.submitter
|
|
return "%s %s" % (self.submitter.first_name, self.submitter.last_name)
|
|
else:
|
|
return ''
|
|
|
|
def __unicode__(self):
|
|
return "%s ver %s: %s" % (self.file, self.version, self.comment[:50])
|