-
Notifications
You must be signed in to change notification settings - Fork 13
/
ajax-library.php
126 lines (112 loc) · 5.44 KB
/
ajax-library.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
<?php
// +------------------------------------------------------------------------+
// | O!MPD, Copyright © 2015-2021 Artur Sierzant |
// | http://www.ompd.pl |
// | |
// | |
// | This program is free software: you can redistribute it and/or modify |
// | it under the terms of the GNU General Public License as published by |
// | the Free Software Foundation, either version 3 of the License, or |
// | (at your option) any later version. |
// | |
// | This program is distributed in the hope that it will be useful, |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
// | GNU General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program. If not, see <http://www.gnu.org/licenses/>. |
// +------------------------------------------------------------------------+
global $cfg, $db;
require_once('include/initialize.inc.php');
require_once('include/library.inc.php');
$album_id = $_POST['album_id'];
$action = $_POST['action'];
$data = array();
$data["result"] = "error";
$isInLibrary = false;
$query = mysqli_query($db,"SELECT * FROM album_id WHERE path LIKE '" . mysqli_real_escape_string($db,$album_id) . ";%'");
if (mysqli_num_rows($query) > 0) {
$isInLibrary = true;
}
if ($action == "add") {
if (!$isInLibrary) {
$ompd_album_id = base_convert(uniqid(), 16, 36);
$album_add_time = time();
if (isTidal($album_id)) {
$query = mysqli_query($db,"SELECT * FROM tidal_album WHERE album_id = " . mysqli_real_escape_string($db,getTidalId($album_id)) . " LIMIT 1");
$album = mysqli_fetch_assoc($query);
mysqli_query($db,'INSERT INTO album (artist_alphabetic, artist, album, year, month, genre_id, album_add_time, discs, image_id, album_id, updated, album_dr)
VALUES (
"' . mysqli_real_escape_string($db,$album['artist_alphabetic']) . '",
"' . mysqli_real_escape_string($db,$album['artist']) . '",
"' . mysqli_real_escape_string($db,$album['album']) . '",
' . (is_null($album['album_date']) ? 'NULL' : (int) substr($album['album_date'],0,4)) . ',
' . 'NULL' . ',
' . (int) mysqli_real_escape_string($db,$album['genre_id']) . ',
' . (int) $album_add_time . ',
' . (int) $album['discs'] . ',
"' . '' . '",
"' . $ompd_album_id . '",
9,
' . 'NULL' . ')');
$query = mysqli_query($db, "
INSERT INTO album_id
(album_id, path, album_add_time, updated)
VALUES
('" . $ompd_album_id . "',
'" . $album_id . ";" . $album['cover'] . ";" . $album['audio_quality'] . "',
'" . $album_add_time . "','9')"
);
$data["ompd_album_id"] = $album["artist"];
$data["result"] = "add_ok";
}
elseif (isHra($album_id)){
$h = new HraAPI;
$h->username = $cfg["hra_username"];
$h->password = $cfg["hra_password"];
if (NJB_WINDOWS) $h->fixSSLcertificate();
$conn = $h->connect();
if ($conn === true){
$res = $h->getAlbum(getHraId($album_id));
if ($res['data']['results']) {
$album = $res['data']['results'];
mysqli_query($db,'INSERT INTO album (artist_alphabetic, artist, album, year, month, genre_id, album_add_time, discs, image_id, album_id, updated, album_dr)
VALUES (
"' . mysqli_real_escape_string($db,$album['artist']) . '",
"' . mysqli_real_escape_string($db,$album['artist']) . '",
"' . mysqli_real_escape_string($db,$album['title']) . '",
' . (is_null($album['productionYear']) ? 'NULL' : (int) substr($album['productionYear'],0,4)) . ',
' . 'NULL' . ',
"",
' . (int) $album_add_time . ',
1,
"' . '' . '",
"' . $ompd_album_id . '",
9,
' . 'NULL' . ')');
$query = mysqli_query($db, "
INSERT INTO album_id
(album_id, path, album_add_time, updated)
VALUES
('" . $ompd_album_id . "',
'" . $album_id . ";https://" . $album['cover']['master']['file_url'] . ";" . $album['tracks'][0]['format'] . "',
'" . $album_add_time . "','9')"
);
$data["result"] = "add_ok";
}
}
}
}
}
elseif ($action == "remove") {
$query = mysqli_query($db,"SELECT album_id FROM album_id WHERE path LIKE '" . mysqli_real_escape_string($db,$album_id) . ";%' AND updated = '9'");
$album = mysqli_fetch_assoc($query);
$ompd_album_id = $album['album_id'];
$query1 = mysqli_query($db,"DELETE FROM album_id WHERE album_id = '" . $ompd_album_id . "'");
$query2 = mysqli_query($db,"DELETE FROM album WHERE album_id = '" . $ompd_album_id . "'");
if ($query && $query2) {
$data["result"] = "remove_ok";
}
}
echo safe_json_encode($data);