-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbeau.php
73 lines (56 loc) · 2.71 KB
/
beau.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
<?php
session_abort();
include("json.php");
include("class.php");
if (isset($_GET["recent"])){
if (file_exists($_SESSION["JSON"] . "recent.json")){
$myArray = retrieve($_SESSION["JSON"] . "recent.json");
$result = array();
foreach ($myArray as $item => $value) {
$img_file = $_SESSION["JSON"] . pathinfo($item, PATHINFO_FILENAME) . ".png";
$tmp = strtolower(end(explode(".", $item)));
$media = $tmp === "mkv" || $tmp === "mp4" || $tmp === "m4v" || $tmp === "webm";
$img = $tmp === "png" || $tmp === "jpg" || $tmp === "jpeg";
if($media || $img){
$mediaclass = $media? "recent-div cons media": "recent-div cons image";
}
else $mediaclass = "recent-div download";
$image = base64_encode(file_get_contents($img_file));
$temp = (object)["name" => basename($item), "media" => $media, "image" => $image, "location" => $value, "mediaclass" => $mediaclass, "dataName" => basename($item)];
array_push($result, $temp);
}
} else { $result = array(); }
$myJSON = json_encode($result);
echo $myJSON;
} else if (isset($_GET["code"])){
$file = decypher($_GET["code"], 1, TRUE);
$name = basename($file);
$size = sizefinder($file);
$time = date("F d Y H:i:s.", fileatime($file));
$location = locate($file);
$info = (object)["name" => $name, "size" => $size, "time" => $time, "location" => $location];
$myJSON = json_encode($info);
echo $myJSON;
} else if (isset($_GET["check"])) {
$tvDirectory = ['/home/maix/Gdrive/TV Shows/', '/home/maix/Gdrive/Multimedia/TV Shows/', '/home/maix/Mega/TV Shows/', '/home/maix/Onedrive/TV Shows/'];
$shows = [];
foreach($tvDirectory as $tvdir){
$list = preg_grep('/^([^.])/', scandir($tvdir));
foreach($list as $show){
$seasons = preg_grep('/^([^.])/', scandir($tvdir.$show));
$show;
foreach($seasons as $season){
$epsiode = preg_grep('/^([^.])/', scandir($tvdir.$show."/".$season));
$epsiodes = [];
foreach($epsiode as $item){
array_push($epsiodes, $tvdir.$show."/".$season."/".$item);
}
$shows[$show][$season] = $epsiodes;
}
}
}
$myJSON = json_encode($shows);
create($shows, "/home/temp/JSON/tvdb.json");
echo $myJSON;
}
?>