-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPushSenderLib.php
More file actions
311 lines (257 loc) · 7.57 KB
/
PushSenderLib.php
File metadata and controls
311 lines (257 loc) · 7.57 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<?php
/*
Push Sender Library
@author : eravse hello@logpusher.com / Merc - merhaba@mrmerc.net
@package : Push Log Sender
@version : 1.0.1
@release : 26.11.2016
*/
date_default_timezone_set("Europe/Istanbul");
class pushSender {
/*
@var $url
@access private
Request url adress
İstek gönderim adresi
*/
private $url = "https://api.logpusher.com/api/agent/savelog";
/*
@var $email
@access private
API E-mail Adress
APİ E-mail adresi
*/
private $email = "hello@profectsoft.com";
/*
@var $api_key
@access private
API Key
APİ Anahtarı
*/
private $api_key = "";
/*
@var $auth_key
@access private
Auth Key
Yetkilendirme Anahtarı
Kontrol Panelden oluşturulur
*/
private $auth_key;
/*
@var $pwd
@access private
Api access password
İstek gönderim adresi
*/
private $pwd = "";
/*
@var $date_time
@access public
Date time variable
Tarih - saat değişkeni (Dışarıdan değiştirilebilir)
*/
public $date_time;
/*
@constant SEPERATOR
@access public
Seperator used for creating auth key
Auth Key'de kullanılan ayraç
*/
const SEPERATOR = "|";
/*
@constant DATE_TIME_FORMAT
@access public
Date - time format in date function
Fonksiyonda kullanılan tarih - saat formatı
m: ay/month, d: gün/day, Y: 4 haneli yıl/ 4 digit year
H: saat/hour, i: dakika/minute, s: saniye,second
*/
const DATE_TIME_FORMAT = "c"; //
/*
@var $options
@access private
Options to send in request. Email, password, auth and api keys are default
İstek yaparken gönderilecek opsiyonlar. E-posta, parola, auth ve api key default olarak gelir.
Eğer make_request() fonksiyonuna yeni parametreler gelirse default olanlar değişir !
*/
private $options = array();
/*
@var $result
@access public
Context result from returned request
İstekten dönen context sonuç değişkeni
*/
public $result;
/*
@function __construct()
@access public
Class Consturcturer with inital params.
Varsayılan değerlerle kurulan sınıf kurucusu
Sınıf tanımlandığında parametleri kurmaya yarar
*/
public function __construct(){
$this->init();
}
/*
@function init()
@access public
Initialize default values and sets the options
Varsayılan değerleri ayarlar ve gönderir
*/
/*
@function pwd()
@access public
@return String
Sets the password and returns
Tanımlanmış şifreyi ayarlar ve döndürür
*/
public function pwd() {
return md5($this->pwd);
}
public function init(){
$this->options["AuthKey"] = $this->_initAuthKey();
$this->options["ApiKey"] = $this->api_key;
$this->options["email"] = $this->email;
$this->options["pwd"] = $this->pwd();
}
/*
@function _initAuthKey()
@access private
@return $auth_key/String
Sets Autkey and returns
Authkey ayarlar
*/
private function _initAuthKey() {
$_str = $this->email."|".$this->pwd()."|".$this->get_datetime();
$this->auth_key = base64_encode($_str);
return $this->auth_key;
}
/*
@function make_request()
@access public
@param @params = array()
@param @credientals = array()
@return $result / Context
Request function. It can make the request with default values
or free to change. If $params changed, authkey and api key will not add automaticly
İstek yapan fonksiyon. Varsayılan parametrelerle istek yapabileceği gibi
parametreler değiştirilerekte yapılabilir. DİKKAT: parametreler değiştiği zaman
authkey ve apikey otomatik olarak eklenmez ! Kullanıcı bunları manuel olarak girmesi gerekir.
*/
public function make_request($params = array(), $credientals = array()) {
$dataToSend = array(); $HttpOptions = null;
// Senaryo 1: Eğer $params ve $credientals alanı boşsa default değerleri gönder
if(empty($params) && empty($credientals)) {
foreach($this->options as $key=>$value) {
$dataToSend[$key] = $value;
}
}
// Senaryo 2: Eğer $params değişmiş ve credientals değişmemişse
// yeni değerleri al ve credientals ile gönder
if( !empty($params) && empty($credientals) ) {
if(! array_key_exists('AuthKey', $params) && !array_key_exists('ApiKey', $params)) {
$params['AuthKey'] = $this->__get("auth_key");
$params['ApiKey'] = $this->__get("api_key");
}
foreach($params as $new_keys => $new_values) {
$dataToSend[$new_keys] = $new_values;
}
foreach($this->get_credientals() as $crediental_keys => $crediental_values) {
$dataToSend[$crediental_keys] = $crediental_values;
}
}
// Senaryo 3: Eğer $params değerleri aynı lakin $credientals değişmişse
// eski değerleri al ve yeni credientals bilgileri ile gönder
if( empty($params) || is_null($params) && !empty($credientals) ) {
$this->set_credientals($credientals);
foreach($this->get_credientals() as $crediental_keys => $crediental_values) {
$dataToSend[$crediental_keys] = $crediental_values;
}
$dataToSend['AuthKey'] = $this->__get("auth_key");
$dataToSend['ApiKey'] = $this->__get("api_key");
}
// Senaryo 4: Eğer hem $params hemde $credientals değişmişse
// yeni değerleri al ve gönder
if( !empty($params) && !empty($credientals) ) {
$this->set_credientals($credientals);
if(! array_key_exists('AuthKey', $params) && !array_key_exists('ApiKey', $params)) {
$params['AuthKey'] = $this->__get("auth_key");
$params['ApiKey'] = $this->__get("api_key");
}
foreach($params as $new_keys => $new_values) {
$dataToSend[$new_keys] = $new_values;
}
foreach($this->get_credientals() as $crediental_keys => $crediental_values) {
$dataToSend[$crediental_keys] = $crediental_values;
}
}
$HttpOptions = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => http_build_query($dataToSend)
)
);
$context = stream_context_create($HttpOptions);
$this->result = file_get_contents($this->url, false, $context);
return $this->result;
}
/*
@function get_datetime()
@access public
@return $date_time/String
Sets the datetime and returns it
Tarih saati ayarlar ve döndürür
*/
public function get_datetime() {
return date(self::DATE_TIME_FORMAT);
}
/*
@function get_credientals()
@access public
@return Array
Returns credientals info
E-mail ve şifre bilgilerini döndürür.
*/
public function get_credientals(){
return array(
'email'=>$this->email,
'pwd' =>$this->pwd()
);
}
/*
@function set_credientals()
@access public
@param $credientals Array
Sets the new credientals and override defaults
Yeni e-posta ve şifreyi ayarlar ve varsayılanların üstüne yazar
*/
public function set_credientals($vars = array()){
if( array_key_exists("email", $vars) && array_key_exists("pwd", $vars)) {
$this->email = $vars['email'];
$this->pwd = md5($vars['pwd']);
}
}
/*
@function __get()
@access public
@param $varname
Generic Class getter function
Genel sınıf değişkeni döndüren fonksiyon
*/
public function __get($varname) {
return $this->$varname;
}
/*
@function __set()
@access public
@param $varname
@param $value
Sets a new value for chosen variable
Seçilen değişkenin değerini değiştirir
*/
public function __set($varname, $value) {
$this->$varname = $value;
}
}
?php>