-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffLogClient.php
91 lines (79 loc) · 2.03 KB
/
offLogClient.php
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
81
82
83
84
85
86
87
88
89
90
91
<?php
/**
* OffLog - client
*
* Config file
*
* PHP version 5
*
* LICENSE: MIT License
*
* @category Reporting
* @package Reporting
* @author Jeremy Hutchings <email@jeremyhutchings.com>
* @license http://en.wikipedia.org/wiki/MIT_License
*
*/
class offLogClient
{
/**
* Refrence to Gearman Client object
*
* @var object GearmanClient
*/
private $gmClient = null;
/**
* Reads in the sharedconfig.php $offLogCfg array for the server details
*
* @param array $offLogCfg.
*/
function __construct($config = array())
{
$this->gmClient = new GearmanClient();
foreach ($config['gearmanServers'] AS $serverId => $details)
{
$this->gmClient->addServer($details['ip'], $details['port']);
}
}
/**
* The main logging function, using doBackground uninterupted script flow
*
* @param big int $userId User ID, big int used to accommodate
* @param int $actionId action ID as per database setup
* @param text $payLoad Meta data string
*
* @return string job id handel
*/
public function logSimpleAction($userId, $actionId, $payLoad = NULL)
{
if ($payLoad)
{
return $this->gmClient->doBackground('logSimple', json_encode(array('userid' => $userId, 'actionId' => $actionId, 'payload' => $payLoad)));
}
else
{
return $this->gmClient->doBackground('logSimple', json_encode(array('userid' => $userId, 'actionId' => $actionId)));
}
}
/**
* Place holder for other logging action types
*/
public function logWatchedAction($userId, $actionId, $payLoad)
{
return $this->logSimpleAction($userId, $actionId, $payLoad);
}
/**
* Place holder for other logging action types
*/
public function logWatchedUser($userId, $actionId, $payLoad)
{
return $this->logSimpleAction($userId, $actionId, $payLoad);
}
/**
* Place holder for other logging action types
*/
public function logErrorReturn($userId, $errorId, $payLoad)
{
# public string GearmanClient::doHigh ( string $function_name , string $workload [, string $unique ] )
}
}// End class