aboutsummaryrefslogtreecommitdiffstats
path: root/include/expire.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-03-24 20:38:53 -0700
committerfriendica <info@friendica.com>2015-03-24 20:38:53 -0700
commit022305fe8383be238a442efdbd5ba3463d15b7ab (patch)
treeff9d3832f5a305eadd435d385f847d9900994dfa /include/expire.php
parent63b8020969434756a7b966ae615c28bf7680f2f8 (diff)
downloadvolse-hubzilla-022305fe8383be238a442efdbd5ba3463d15b7ab.tar.gz
volse-hubzilla-022305fe8383be238a442efdbd5ba3463d15b7ab.tar.bz2
volse-hubzilla-022305fe8383be238a442efdbd5ba3463d15b7ab.zip
also allow service classes to set post expiration. These take priority over the site default.
Diffstat (limited to 'include/expire.php')
-rw-r--r--include/expire.php22
1 files changed, 12 insertions, 10 deletions
diff --git a/include/expire.php b/include/expire.php
index e414a6e7d..b244e65f5 100644
--- a/include/expire.php
+++ b/include/expire.php
@@ -41,12 +41,7 @@ function expire_run($argv, $argc){
logger('site_expire: ' . $site_expire);
- if(intval($site_expire)) {
- $r = q("SELECT channel_id, channel_address, channel_pageflags, channel_expire_days from channel where true");
- }
- else {
- $r = q("SELECT channel_id, channel_address, channel_pageflags, channel_expire_days from channel where channel_expire_days != 0");
- }
+ $r = q("SELECT channel_id, channel_address, channel_pageflags, channel_expire_days from channel where true");
if($r) {
foreach($r as $rr) {
@@ -55,16 +50,23 @@ function expire_run($argv, $argc){
if($rr['channel_pageflags'] & PAGE_SYSTEM)
continue;
- if(intval($site_expire) && (intval($site_expire) < intval($rr['channel_expire_days'])) ||
+ // service class default (if non-zero) over-rides the site default
+
+ $service_class_expire = service_class_fetch($rr['channel_id'],'expire_days');
+ if(intval($service_class_expire))
+ $channel_expire = $service_class_expire;
+ else
+ $channel_expire = $site_expire;
+
+ if(intval($channel_expire) && (intval($channel_expire) < intval($rr['channel_expire_days'])) ||
intval($rr['channel_expire_days'] == 0)) {
- $expire_days = $site_expire;
+ $expire_days = $channel_expire;
}
else {
$expire_days = $rr['channel_expire_days'];
}
-
- // if the site expiration is non-zero and less than person expiration, use that
+ // if the site or service class expiration is non-zero and less than person expiration, use that
logger('Expire: ' . $rr['channel_address'] . ' interval: ' . $expire_days, LOGGER_DEBUG);
item_expire($rr['channel_id'], $expire_days);
}