aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/AbConfig.php
blob: af1786966654cd748163a66309e92cd6c62bb054 (plain) (blame)
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
<?php

namespace Zotlabs\Lib;


class AbConfig {

	static public function Load($chan,$xhash,$family = '') {
		$where = '';

		if($family) {
			$where = sprintf(" and cat = '%s' ",dbesc($family));
		}

		$r = q("select * from abconfig where chan = %d and xchan = '%s' $where",
			intval($chan),
			dbesc($xhash)
		);

		return $r;
	}


	static public function Get($chan,$xhash,$family,$key, $default = false) {
		$r = q("select * from abconfig where chan = %d and xchan = '%s' and cat = '%s' and k = '%s' limit 1",
			intval($chan),
			dbesc($xhash),
			dbesc($family),
			dbesc($key)
		);
		if($r) {
			return ((preg_match('|^a:[0-9]+:{.*}$|s', $r[0]['v'])) ? unserialize($r[0]['v']) : $r[0]['v']);
		}
		return $default;
	}


	static public function Set($chan,$xhash,$family,$key,$value) {

		$dbvalue = ((is_array($value))  ? serialize($value) : $value);
		$dbvalue = ((is_bool($dbvalue)) ? intval($dbvalue)  : $dbvalue);

		if(self::Get($chan,$xhash,$family,$key) === false) {
			$r = q("insert into abconfig ( chan, xchan, cat, k, v ) values ( %d, '%s', '%s', '%s', '%s' ) ",
				intval($chan),
				dbesc($xhash),
				dbesc($family),
				dbesc($key),
				dbesc($dbvalue)
			);
		}
		else {
			$r = q("update abconfig set v = '%s' where chan = %d and xchan = '%s' and cat = '%s' and k = '%s' ",
				dbesc($dbvalue),
				dbesc($chan),
				dbesc($xhash),
				dbesc($family),
				dbesc($key)
			);
		}

		if($r)
			return $value;
		return false;
	}


	static public function Delete($chan,$xhash,$family,$key) {

		$r = q("delete from abconfig where chan = %d and xchan = '%s' and cat = '%s' and k = '%s' ",
			intval($chan),
			dbesc($xhash),
			dbesc($family),
			dbesc($key)
		);

		return $r;
	}

}