-
Notifications
You must be signed in to change notification settings - Fork 0
/
My_API.php
286 lines (280 loc) · 9.09 KB
/
My_API.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
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
<?php
include_once './API.php';
require_once './library/DBClass.php';
include "./library/getid3/getid3.php";
/**
* Verifica daca stringul e bun pt a fi transmis in Firebird.
*
* <em>Deocamdata verifica doar apostroafele</em>
*
* @param String $str string-ul de verificat
*
* @return String string-ul bun
*/
function DBCheckString($str)
{
$result=str_replace("'", "''", $str);
return $result;
}
function TestVB($text)
{
$sql="insert into test values ('$text')";
$db= new DBClass();
$db->ExecuteStatement($sql);
unset($db);
return "BRAVO";
}
function MyFormatFloat($aFloat,$decimals = 2,$dec_point = '.',$thousands_sep = ',' )
{
return number_format($aFloat,$decimals,$dec_point,$thousands_sep);
}
function MyFormatDate($aDateString,$format='d.m.Y') /* 'H:i' - pt ora*/
{
$aDate=new DateTime(''.$aDateString);
return $aDate->format($format);
}
function psMicroTime()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
/**
* Genereaza un id unic in functie de timp de 21 de caractere.
*
* @return String
*/
function GenerareRandID()
{
$chars=str_split('ABCDEFGHIJKLMNOPQRSTUVWXYZ');
shuffle($chars);
$theChars=implode('', array_slice($chars, rand(0, 22),3));
$theTime=(string)psMicroTime();
if (strlen($theTime)<15)
for ($i=0;$i<(15-strlen($theTime));$i++)
$theTime.=0;
if (strlen($theTime)>15)
$theTime= substr ($theTime, 0,15);
return $theTime.$theChars."PIC";
}
function GetAlbumArt($path1)
{
global $rootFolder;
$Path=$rootFolder.$path1;
$getID3 = new getID3;
$OldThisFileInfo = $getID3->analyze($Path);
if(isset($OldThisFileInfo['comments']['picture'][0])){
$Image='data:'.$OldThisFileInfo['comments']['picture'][0]['image_mime'].
';charset=utf-8;base64,'.
base64_encode($OldThisFileInfo['comments']['picture'][0]['data']);
}
else
$Image="./library/img/default.jpg";
return $Image;
}
class MyAPI extends API
{
protected $User;
protected $_goodUser;
protected $_userID;
public function __construct($request, $origin) {
parent::__construct($request);
$this->_goodUser=false;
$this->_userID=0;
//
// echo "<br>".$this->file;
if (strtoupper($this->method)=="PUT")
{
$putParams=array();
if (!$this->request)
$this->request=array();
$putParams= json_decode($this->file,true);
$this->request=array_merge( $this->request,$putParams);
}
$this->_goodUser=true;
//!!!!!!!!!!!! + Autentificare !!!!!!!!!!!!!!!
}
protected function next($params)
{
$db= new DBClass();
if (count($params)===0)
{
$sql="select id_mel,order_id from playlist_mel where playing>0 limit 1";
$data=$db->GetTable($sql);
if (count($data)==0)
{
$sql="select * from playlist_mel "
. " "
. " "
. " order by order_id,title limit 1";
}
else
{
$sql="select * from playlist_mel where "
. " order_id >".$data[0]["order_id"]
. " "
. " order by order_id,title limit 1";
}
}
else
{
switch ($params[0]) {
case "id":
$sql="select * from playlist_mel where "
. " order_id >(select order_id from playlist_mel where id_mel=$params[1]) "
. " "
. " order by order_id,title limit 1";
break;
case "title":
$sql="select * from playlist_mel where title=$params[1] limit 1";
break;
default:
throw new Exception("Ceva necunoscut!");
break;
}
}
$data=$db->GetTable($sql);
if (count($data)==0)
{
$sql="select * from playlist_mel order by order_id,title limit 1";
}
$data=$db->GetTable($sql);
$sqlUpdate="update playlist set playing=0 where playing>0;";
$aBool=$db->ExecuteStatement($sqlUpdate);
if ($aBool)
{
$sqlUpdate="update playlist set playing=3 where id_mel=".$data[0]["id_mel"];
$aBool2=$db->ExecuteStatement($sqlUpdate);
}
$data[0]["album_art"]= GetAlbumArt($data[0]["path"]);
unset($db);
return $data;
}
protected function pause($params)
{
$db= new DBClass();
$sqlUpdate="update playlist set playing=2 where playing=1;";
$aBool=$db->ExecuteStatement($sqlUpdate);
unset($db);
return array("success"=>$aBool);
}
protected function play($params)
{
/* 0-not playing
* 1-playing
* 2-paused
* 3-selected
*/
$db= new DBClass();
if (count($params)===0)
{
$sql="select * from playlist_mel where playing>0 order by playing,order_id,title limit 1";
$setPlaying=1;
}
else
{
switch ($params[0]) {
case "id":
$sql="select * from playlist_mel where id_mel=$params[1] order by order_id,title limit 1";
$setPlaying=1;
break;
case "title":
$sql="select * from playlist_mel where nume=$params[1] order by order_id,title limit 1";
$setPlaying=1;
break;
default:
throw new Exception("Ceva necunoscut!");
break;
}
}
$data=$db->GetTable($sql);
if (count($data)==0)
{
$sql="select * from playlist_mel order by order_id,title limit 1";
$setPlaying=3;
}
$data=$db->GetTable($sql);
$sqlUpdate="update playlist set playing=0 where playing>0;";
$aBool=$db->ExecuteStatement($sqlUpdate);
if ($aBool)
{
$sqlUpdate="update playlist set playing=$setPlaying where id_mel=".$data[0]["id_mel"];
$aBool2=$db->ExecuteStatement($sqlUpdate);
}
$data[0]["album_art"]= GetAlbumArt($data[0]["path"]);
unset($db);
return $data;
}
protected function prev($params)
{
$db= new DBClass();
if (count($params)===0)
{
$sql="select id_mel,order_id from playlist_mel where playing>0 limit 1";
$data=$db->GetTable($sql);
if (count($data)==0)
{
$sql="select * from playlist_mel "
. " "
. " "
. " order by order_id desc ,title limit 1";
}
else
{
$sql="select * from playlist_mel where "
. " order_id<".$data[0]["order_id"]
. " "
. " order by order_id desc,title limit 1";
}
}
else
{
switch ($params[0]) {
case "id":
$sql="select * from playlist_mel where "
. " order_id <(select order_id from playlist_mel where id_mel=$params[1]) "
. " "
. " order by order_id desc,title limit 1";
break;
case "title":
$sql="select * from playlist_mel where title=$params[1] limit 1";
break;
default:
throw new Exception("Ceva necunoscut!");
break;
}
}
$data=$db->GetTable($sql);
if (count($data)==0)
{
$sql="select * from playlist_mel order by order_id desc,title limit 1";
}
$data=$db->GetTable($sql);
$sqlUpdate="update playlist set playing=0 where playing>0;";
$aBool=$db->ExecuteStatement($sqlUpdate);
if ($aBool)
{
$sqlUpdate="update playlist set playing=3 where id_mel=".$data[0]["id_mel"];
$aBool2=$db->ExecuteStatement($sqlUpdate);
}
$data[0]["album_art"]= GetAlbumArt($data[0]["path"]);
unset($db);
return $data;
}
protected function playlist($params)
{
$db= new DBClass();
if (count($params)===0)
{
$sql="select * from playlist_mel order by order_id,title";
}
$data=$db->GetTable($sql);
if (count($data)==0)
throw new Exception("Empty playlist!");
for ($i = 0; $i < count($data); $i++) {
$data[$i]["album_art"]= GetAlbumArt($data[$i]["path"]);
}
unset($db);
return $data;
}
}
?>