From 76bf892f9f52c0deee313a89929185e332877f85 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 18 Feb 2016 00:20:08 -0800 Subject: iconfig - add sharing variable --- boot.php | 2 +- include/items.php | 21 ++++++++++++--------- install/schema_mysql.sql | 4 +++- install/schema_postgres.sql | 2 ++ install/update.php | 14 ++++++++++++-- 5 files changed, 30 insertions(+), 13 deletions(-) diff --git a/boot.php b/boot.php index 905f05ef6..20f07c452 100755 --- a/boot.php +++ b/boot.php @@ -51,7 +51,7 @@ define ( 'RED_VERSION', trim(file_get_contents('version.inc'))); define ( 'STD_VERSION', '1.2.3' ); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1162 ); +define ( 'DB_UPDATE_VERSION', 1163 ); /** diff --git a/include/items.php b/include/items.php index ea31acba0..9a3f761a4 100755 --- a/include/items.php +++ b/include/items.php @@ -1443,7 +1443,8 @@ function encode_item_meta($meta,$mirror = false) { if($meta) { foreach($meta as $m) { - $ret[] = array('family' => $m['cat'], 'key' => $m['k'], 'value' => $m['v']); + if($m['sharing'] || $mirror) + $ret[] = array('family' => $m['cat'], 'key' => $m['k'], 'value' => $m['v'], 'sharing' => intval($m['sharing'])); } } @@ -1455,7 +1456,7 @@ function decode_item_meta($meta) { if(is_array($meta) && $meta) { foreach($meta as $m) { - $ret[] = array('cat' => escape_tags($m['family']),'k' => escape_tags($m['key']),'v' => $m['value']); + $ret[] = array('cat' => escape_tags($m['family']),'k' => escape_tags($m['key']),'v' => $m['value'],'sharing' => $m['sharing']); } } return $ret; @@ -2559,7 +2560,7 @@ function item_store($arr, $allow_exec = false, $deliver = true) { if($meta) { foreach($meta as $m) { - set_iconfig($current_post,$m['cat'],$m['k'],$m['v']); + set_iconfig($current_post,$m['cat'],$m['k'],$m['v'],$m['sharing']); } $arr['iconfig'] = $meta; } @@ -2841,7 +2842,7 @@ function item_store_update($arr,$allow_exec = false, $deliver = true) { if($meta) { foreach($meta as $m) { - set_iconfig($orig_post_id,$m['cat'],$m['k'],$m['v']); + set_iconfig($orig_post_id,$m['cat'],$m['k'],$m['v'],$m['sharing']); } $arr['iconfig'] = $meta; } @@ -5504,7 +5505,7 @@ function get_iconfig(&$item, $family, $key) { } -function set_iconfig(&$item, $family, $key, $value) { +function set_iconfig(&$item, $family, $key, $value, $sharing = false) { $dbvalue = ((is_array($value)) ? serialize($value) : $value); $dbvalue = ((is_bool($dbvalue)) ? intval($dbvalue) : $dbvalue); @@ -5523,7 +5524,7 @@ function set_iconfig(&$item, $family, $key, $value) { } } } - $entry = array('cat' => $family, 'k' => $key, 'v' => $value); + $entry = array('cat' => $family, 'k' => $key, 'v' => $value, 'sharing' => $sharing); if(is_null($idx)) $item['iconfig'][] = $entry; @@ -5539,16 +5540,18 @@ function set_iconfig(&$item, $family, $key, $value) { return false; if(get_iconfig($item, $family, $key) === false) { - $r = q("insert into iconfig( iid, cat, k, v ) values ( %d, '%s', '%s', '%s' ) ", + $r = q("insert into iconfig( iid, cat, k, v, sharing ) values ( %d, '%s', '%s', '%s', %d ) ", intval($iid), dbesc($family), dbesc($key), - dbesc($dbvalue) + dbesc($dbvalue), + intval($sharing) ); } else { - $r = q("update iconfig set v = '%s' where iid = %d and cat = '%s' and k = '%s' ", + $r = q("update iconfig set v = '%s', sharing = %d where iid = %d and cat = '%s' and k = '%s' ", dbesc($dbvalue), + intval($sharing), intval($iid), dbesc($family), dbesc($key) diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index bb6ad24a2..693cad1a8 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -550,10 +550,12 @@ CREATE TABLE IF NOT EXISTS `iconfig` ( `cat` char(255) NOT NULL DEFAULT '', `k` char(255) NOT NULL DEFAULT '', `v` mediumtext NOT NULL, + `sharing` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `iid` (`iid`), KEY `cat` (`cat`), - KEY `k` (`k`) + KEY `k` (`k`), + KEY `sharing` (`sharing`), ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `issue` ( diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 2d9bffdec..964ca5966 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -544,11 +544,13 @@ CREATE TABLE "iconfig" ( "cat" text NOT NULL DEFAULT '', "k" text NOT NULL DEFAULT '', "v" text NOT NULL DEFAULT '', + "sharing" int NOT NULL DEFAULT '0', PRIMARY_KEY("id") ); create index "iconfig_iid" on iconfig ("iid"); create index "iconfig_cat" on iconfig ("cat"); create index "iconfig_k" on iconfig ("k"); +create index "iconfig_sharing" on iconfig ("sharing"); CREATE TABLE "issue" ( "issue_id" serial NOT NULL, "issue_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00', diff --git a/install/update.php b/install/update.php index e96bda03c..d21295be7 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@