Merge pull request #927 from dawnbreak/master

Some cleanups and a bugfix.
This commit is contained in:
RedMatrix 2015-03-13 11:39:14 +11:00
commit 52f7d1d068
3 changed files with 99 additions and 68 deletions

View File

@ -24,7 +24,6 @@
function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) {
$dba = null; $dba = null;
$dbtype = intval($dbtype); $dbtype = intval($dbtype);
if($dbtype == DBTYPE_POSTGRES) { if($dbtype == DBTYPE_POSTGRES) {
@ -145,6 +144,7 @@ abstract class dba_driver {
return false; return false;
} }
} }
return true; return true;
} }
@ -193,6 +193,7 @@ function printable($s) {
$s = str_replace("\x00",'.',$s); $s = str_replace("\x00",'.',$s);
if(x($_SERVER,'SERVER_NAME')) if(x($_SERVER,'SERVER_NAME'))
$s = escape_tags($s); $s = escape_tags($s);
return $s; return $s;
} }
@ -252,7 +253,7 @@ function db_quoteinterval($txt) {
function dbesc_identifier($str) { function dbesc_identifier($str) {
global $db; global $db;
return $db->escape_identifier($txt); return $db->escape_identifier($str);
} }
function db_utcnow() { function db_utcnow() {
@ -349,6 +350,7 @@ function dbesc_array_cb(&$item, $key) {
$item = '0001-01-01 00:00:00'; $item = '0001-01-01 00:00:00';
else if($item == '0001-01-01 00:00:00' && ACTIVE_DBTYPE == DBTYPE_MYSQL) else if($item == '0001-01-01 00:00:00' && ACTIVE_DBTYPE == DBTYPE_MYSQL)
$item = '0000-00-00 00:00:00'; $item = '0000-00-00 00:00:00';
$item = dbesc($item); $item = dbesc($item);
} }
} }
@ -386,4 +388,3 @@ function db_getfunc($f) {
logger('Unable to abstract DB function "'. $f . '" for dbtype ' . ACTIVE_DBTYPE, LOGGER_DEBUG); logger('Unable to abstract DB function "'. $f . '" for dbtype ' . ACTIVE_DBTYPE, LOGGER_DEBUG);
return $f; return $f;
} }

View File

@ -1,7 +1,12 @@
<?php /** @file */ <?php
/**
// Session management functions. These provide database storage of PHP * @file include/session.php
// session info. *
* @brief This file includes session related functions.
*
* Session management functions. These provide database storage of PHP
* session info.
*/
$session_exists = 0; $session_exists = 0;
$session_expire = 180000; $session_expire = 180000;
@ -15,7 +20,10 @@ function new_cookie($time) {
session_set_cookie_params($time); session_set_cookie_params($time);
session_regenerate_id(false); session_regenerate_id(false);
q("UPDATE session SET sid = '%s' WHERE sid = '%s'", dbesc(session_id()), dbesc($old_sid)); q("UPDATE session SET sid = '%s' WHERE sid = '%s'",
dbesc(session_id()),
dbesc($old_sid)
);
if (x($_COOKIE, 'jsAvailable')) { if (x($_COOKIE, 'jsAvailable')) {
if ($time) { if ($time) {
@ -28,7 +36,7 @@ function new_cookie($time) {
} }
function ref_session_open ($s,$n) { function ref_session_open ($s, $n) {
return true; return true;
} }
@ -37,16 +45,19 @@ function ref_session_read ($id) {
global $session_exists; global $session_exists;
if(x($id)) if(x($id))
$r = q("SELECT `data` FROM `session` WHERE `sid`= '%s'", dbesc($id)); $r = q("SELECT `data` FROM `session` WHERE `sid`= '%s'", dbesc($id));
if(count($r)) { if(count($r)) {
$session_exists = true; $session_exists = true;
return $r[0]['data']; return $r[0]['data'];
} }
return ''; return '';
} }
function ref_session_write ($id,$data) { function ref_session_write ($id, $data) {
global $session_exists, $session_expire; global $session_exists, $session_expire;
if(! $id || ! $data) { if(! $id || ! $data) {
return false; return false;
} }
@ -54,15 +65,21 @@ function ref_session_write ($id,$data) {
$expire = time() + $session_expire; $expire = time() + $session_expire;
$default_expire = time() + 300; $default_expire = time() + 300;
if($session_exists) if($session_exists) {
$r = q("UPDATE `session` q("UPDATE `session`
SET `data` = '%s', `expire` = '%s' SET `data` = '%s', `expire` = '%s' WHERE `sid` = '%s'",
WHERE `sid` = '%s'", dbesc($data),
dbesc($data), dbesc($expire), dbesc($id)); dbesc($expire),
else dbesc($id)
$r = q("INSERT INTO `session` (sid, expire, data) values ('%s', '%s', '%s')", );
} else {
q("INSERT INTO `session` (sid, expire, data) values ('%s', '%s', '%s')",
//SET `sid` = '%s', `expire` = '%s', `data` = '%s'", //SET `sid` = '%s', `expire` = '%s', `data` = '%s'",
dbesc($id), dbesc($default_expire), dbesc($data)); dbesc($id),
dbesc($default_expire),
dbesc($data)
);
}
return true; return true;
} }
@ -81,8 +98,9 @@ function ref_session_destroy ($id) {
function ref_session_gc($expire) { function ref_session_gc($expire) {
q("DELETE FROM session WHERE expire < %d", dbesc(time())); q("DELETE FROM session WHERE expire < %d", dbesc(time()));
if (! get_config('system','innodb')) if (! get_config('system', 'innodb'))
db_optimizetable('session'); db_optimizetable('session');
return true; return true;
} }
@ -92,5 +110,14 @@ ini_set('session.gc_probability', $gc_probability);
ini_set('session.use_only_cookies', 1); ini_set('session.use_only_cookies', 1);
ini_set('session.cookie_httponly', 1); ini_set('session.cookie_httponly', 1);
/*
session_set_save_handler ('ref_session_open', 'ref_session_close', 'ref_session_read', 'ref_session_write', 'ref_session_destroy', 'ref_session_gc'); * PHP function which sets our user-level session storage functions.
*/
session_set_save_handler(
'ref_session_open',
'ref_session_close',
'ref_session_read',
'ref_session_write',
'ref_session_destroy',
'ref_session_gc'
);

View File

@ -110,8 +110,6 @@ function z_input_filter($channel_id,$s,$type = 'text/bbcode') {
function purify_html($s) { function purify_html($s) {
require_once('library/HTMLPurifier.auto.php'); require_once('library/HTMLPurifier.auto.php');
require_once('include/html2bbcode.php'); require_once('include/html2bbcode.php');
@ -360,8 +358,6 @@ function paginate(&$a) {
function alt_pager(&$a, $i, $more = '', $less = '') { function alt_pager(&$a, $i, $more = '', $less = '') {
$o = '';
if(! $more) if(! $more)
$more = t('older'); $more = t('older');
if(! $less) if(! $less)
@ -370,10 +366,10 @@ function alt_pager(&$a, $i, $more = '', $less = '') {
$stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string); $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
$stripped = str_replace('q=','',$stripped); $stripped = str_replace('q=','',$stripped);
$stripped = trim($stripped,'/'); $stripped = trim($stripped,'/');
$pagenum = $a->pager['page']; //$pagenum = $a->pager['page'];
$url = $a->get_baseurl() . '/' . $stripped; $url = $a->get_baseurl() . '/' . $stripped;
return replace_macros(get_markup_template('alt_pager.tpl'),array( return replace_macros(get_markup_template('alt_pager.tpl'), array(
'$has_less' => (($a->pager['page'] > 1) ? true : false), '$has_less' => (($a->pager['page'] > 1) ? true : false),
'$has_more' => (($i > 0 && $i >= $a->pager['itemspage']) ? true : false), '$has_more' => (($i > 0 && $i >= $a->pager['itemspage']) ? true : false),
'$less' => $less, '$less' => $less,
@ -600,6 +596,7 @@ function activity_match($haystack,$needle) {
function get_tags($s) { function get_tags($s) {
$ret = array(); $ret = array();
$match = array();
// ignore anything in a code block // ignore anything in a code block
@ -1061,7 +1058,6 @@ function list_smilies() {
* *
*/ */
function smilies($s, $sample = false) { function smilies($s, $sample = false) {
$a = get_app();
if(intval(get_config('system','no_smilies')) if(intval(get_config('system','no_smilies'))
|| (local_channel() && intval(get_pconfig(local_channel(),'system','no_smilies')))) || (local_channel() && intval(get_pconfig(local_channel(),'system','no_smilies'))))
@ -2111,6 +2107,7 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag) {
$replaced = false; $replaced = false;
$r = null; $r = null;
$match = array();
$termtype = ((strpos($tag,'#') === 0) ? TERM_HASHTAG : TERM_UNKNOWN); $termtype = ((strpos($tag,'#') === 0) ? TERM_HASHTAG : TERM_UNKNOWN);
$termtype = ((strpos($tag,'@') === 0) ? TERM_MENTION : $termtype); $termtype = ((strpos($tag,'@') === 0) ? TERM_MENTION : $termtype);
@ -2354,7 +2351,7 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag) {
function linkify_tags($a, &$body, $uid) { function linkify_tags($a, &$body, $uid) {
$str_tags = ''; $str_tags = '';
$tagged = array(); $tagged = array();
$result = array(); $results = array();
$tags = get_tags($body); $tags = get_tags($body);
@ -2375,18 +2372,23 @@ function linkify_tags($a, &$body, $uid) {
if($fullnametagged) if($fullnametagged)
continue; continue;
// @FIXME which $profile_uid? It's not set anywhere.
$success = handle_tag($a, $body, $access_tag, $str_tags, ($uid) ? $uid : $profile_uid , $tag); $success = handle_tag($a, $body, $access_tag, $str_tags, ($uid) ? $uid : $profile_uid , $tag);
$results[] = array('success' => $success, 'access_tag' => $access_tag); $results[] = array('success' => $success, 'access_tag' => $access_tag);
if($success['replaced']) $tagged[] = $tag; if($success['replaced']) $tagged[] = $tag;
} }
} }
return $results; return $results;
} }
/** /**
* @brief returns icon name for use with e.g. font-awesome based on mime-type * @brief returns icon name for use with e.g. font-awesome based on mime-type.
* *
* @param string $type * These are the the font-awesome names of version 3.2.1. The newer font-awesome
* 4 has different names.
*
* @param string $type mime type
* @return string * @return string
*/ */
function getIconFromType($type) { function getIconFromType($type) {
@ -2439,10 +2441,10 @@ function getIconFromType($type) {
* @brief Returns a human readable formatted string for filesizes. * @brief Returns a human readable formatted string for filesizes.
* *
* @param int $size filesize in bytes * @param int $size filesize in bytes
* @return string * @return string human readable formatted filesize
*/ */
function userReadableSize($size) { function userReadableSize($size) {
$ret = ""; $ret = '';
if (is_numeric($size)) { if (is_numeric($size)) {
$incr = 0; $incr = 0;
$k = 1024; $k = 1024;
@ -2451,7 +2453,8 @@ function userReadableSize($size) {
$incr++; $incr++;
$size = round($size / $k, 2); $size = round($size / $k, 2);
} }
$ret = $size . " " . $unit[$incr]; $ret = $size . ' ' . $unit[$incr];
} }
return $ret; return $ret;
} }