@@ -2,15 +2,15 @@ |
||
2 | 2 | <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/base.php"); ?> |
3 | 3 | <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/static/lib/new/fetch.php"); ?> |
4 | 4 | <?php |
5 | - $_user_fetch_utils = new user_fetch_utils(); |
|
6 | - $_video_fetch_utils = new video_fetch_utils(); |
|
7 | - $_base_utils = new config_setup(); |
|
5 | + $_user_fetch_utils = new user_fetch_utils(); |
|
6 | + $_video_fetch_utils = new video_fetch_utils(); |
|
7 | + $_base_utils = new config_setup(); |
|
8 | 8 | |
9 | - $_base_utils->initialize_db_var($conn); |
|
10 | - $_video_fetch_utils->initialize_db_var($conn); |
|
11 | - $_user_fetch_utils->initialize_db_var($conn); |
|
9 | + $_base_utils->initialize_db_var($conn); |
|
10 | + $_video_fetch_utils->initialize_db_var($conn); |
|
11 | + $_user_fetch_utils->initialize_db_var($conn); |
|
12 | 12 | |
13 | - $_video = $_video_fetch_utils->fetch_video_rid($_GET['v']); |
|
13 | + $_video = $_video_fetch_utils->fetch_video_rid($_GET['v']); |
|
14 | 14 | ?> |
15 | 15 | <?php |
16 | 16 | //======================================================================================================= |
@@ -43,21 +43,21 @@ |
||
43 | 43 | |
44 | 44 | // File upload |
45 | 45 | // "file" => "", |
46 | -], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ); |
|
46 | +], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); |
|
47 | 47 | |
48 | 48 | |
49 | -$ch = curl_init( $webhookurl ); |
|
50 | -curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Content-type: application/json')); |
|
51 | -curl_setopt( $ch, CURLOPT_POST, 1); |
|
52 | -curl_setopt( $ch, CURLOPT_POSTFIELDS, $json_data); |
|
53 | -curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1); |
|
54 | -curl_setopt( $ch, CURLOPT_HEADER, 0); |
|
55 | -curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1); |
|
49 | +$ch = curl_init($webhookurl); |
|
50 | +curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json')); |
|
51 | +curl_setopt($ch, CURLOPT_POST, 1); |
|
52 | +curl_setopt($ch, CURLOPT_POSTFIELDS, $json_data); |
|
53 | +curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); |
|
54 | +curl_setopt($ch, CURLOPT_HEADER, 0); |
|
55 | +curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
|
56 | 56 | |
57 | -$response = curl_exec( $ch ); |
|
57 | +$response = curl_exec($ch); |
|
58 | 58 | // If you need to debug, or find out why you can't send message uncomment line below, and execute script. |
59 | 59 | // echo $response; |
60 | -curl_close( $ch ); |
|
60 | +curl_close($ch); |
|
61 | 61 | |
62 | 62 | skip: |
63 | 63 | header('Location: ' . $_SERVER['HTTP_REFERER']); |
@@ -21,7 +21,7 @@ |
||
21 | 21 | $_user_update_utils->initialize_db_var($conn); |
22 | 22 | ?> |
23 | 23 | <?php |
24 | -if(isset($_SESSION['siteusername'])) { |
|
24 | +if (isset($_SESSION['siteusername'])) { |
|
25 | 25 | $_user_update_utils->update_user_video_banner( |
26 | 26 | "", |
27 | 27 | $_SESSION['siteusername'] |
@@ -18,7 +18,7 @@ |
||
18 | 18 | ?> |
19 | 19 | <?php |
20 | 20 | |
21 | -if($_user_fetch_utils->if_joined_group($_SESSION['siteusername'], $_GET['id'])) { |
|
21 | +if ($_user_fetch_utils->if_joined_group($_SESSION['siteusername'], $_GET['id'])) { |
|
22 | 22 | $stmt = $conn->prepare("DELETE FROM group_members WHERE togroup = ? AND username = ?"); |
23 | 23 | $stmt->bind_param("ss", $_GET['id'], $_SESSION['siteusername']); |
24 | 24 | $stmt->execute(); |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | <?php |
18 | 18 | $name = $_GET['user']; |
19 | 19 | |
20 | -if(!isset($_SESSION['siteusername']) || !isset($_GET['user'])) { |
|
20 | +if (!isset($_SESSION['siteusername']) || !isset($_GET['user'])) { |
|
21 | 21 | die("You are not logged in or you did not put in an argument"); |
22 | 22 | } |
23 | 23 | |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
26 | 26 | $stmt->execute(); |
27 | 27 | $result = $stmt->get_result(); |
28 | - if($result->num_rows === 0) die('You haven\'t blocked this person!'); |
|
28 | + if ($result->num_rows === 0) die('You haven\'t blocked this person!'); |
|
29 | 29 | $stmt->close(); |
30 | 30 | |
31 | 31 | $stmt = $conn->prepare("DELETE FROM block WHERE sender = ? AND reciever = ?"); |
@@ -25,8 +25,10 @@ |
||
25 | 25 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
26 | 26 | $stmt->execute(); |
27 | 27 | $result = $stmt->get_result(); |
28 | - if($result->num_rows === 0) die('You haven\'t blocked this person!'); |
|
29 | -$stmt->close(); |
|
28 | + if($result->num_rows === 0) { |
|
29 | + die('You haven\'t blocked this person!'); |
|
30 | + } |
|
31 | + $stmt->close(); |
|
30 | 32 | |
31 | 33 | $stmt = $conn->prepare("DELETE FROM block WHERE sender = ? AND reciever = ?"); |
32 | 34 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
@@ -10,7 +10,7 @@ |
||
10 | 10 | <?php $__time_h = new time_helper(); ?> |
11 | 11 | <?php |
12 | 12 | |
13 | -if($_user_fetch_utils->video_responded($_GET['reciever'], $_GET['sending']) == 0) { |
|
13 | +if ($_user_fetch_utils->video_responded($_GET['reciever'], $_GET['sending']) == 0) { |
|
14 | 14 | $stmt = $conn->prepare("INSERT INTO video_response (toid, author, video) VALUES (?, ?, ?)"); |
15 | 15 | $stmt->bind_param("sss", $_GET['reciever'], $_SESSION['siteusername'], $_GET['sending']); |
16 | 16 | $stmt->execute(); |
@@ -27,14 +27,14 @@ |
||
27 | 27 | } |
28 | 28 | */ |
29 | 29 | |
30 | -if(!$__user_h->user_exists($_GET['n'])) { |
|
30 | +if (!$__user_h->user_exists($_GET['n'])) { |
|
31 | 31 | $request->error->message = "This user does not exist!"; $request->error->status = ""; |
32 | 32 | } |
33 | 33 | |
34 | -if($__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) |
|
34 | +if ($__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) |
|
35 | 35 | { $request->error->message = "You are already subscribed to this person!"; $request->error->status = ""; } |
36 | 36 | |
37 | -if($request->error->status == "OK") { |
|
37 | +if ($request->error->status == "OK") { |
|
38 | 38 | $stmt = $__db->prepare("INSERT INTO subscribers (sender, reciever) VALUES (:sender, :reciever)"); |
39 | 39 | $stmt->bindParam(":sender", $request->sender); |
40 | 40 | $stmt->bindParam(":reciever", $request->name); |
@@ -12,11 +12,11 @@ discard block |
||
12 | 12 | $name = $_GET['user']; |
13 | 13 | $author = $_SESSION['siteusername']; |
14 | 14 | |
15 | -if(!isset($_SESSION['siteusername']) || !isset($_GET['user'])) { |
|
15 | +if (!isset($_SESSION['siteusername']) || !isset($_GET['user'])) { |
|
16 | 16 | header('Location: ' . $_SERVER['HTTP_REFERER']); |
17 | 17 | } |
18 | 18 | |
19 | -if($name == $_SESSION['siteusername']) { |
|
19 | +if ($name == $_SESSION['siteusername']) { |
|
20 | 20 | header('Location: ' . $_SERVER['HTTP_REFERER']); |
21 | 21 | } |
22 | 22 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
25 | 25 | $stmt->execute(); |
26 | 26 | $result = $stmt->get_result(); |
27 | - if($result->num_rows === 1) die('You already blocked this person!'); |
|
27 | + if ($result->num_rows === 1) die('You already blocked this person!'); |
|
28 | 28 | $stmt->close(); |
29 | 29 | |
30 | 30 | $stmt = $conn->prepare("INSERT INTO block (sender, reciever) VALUES (?, ?)"); |
@@ -24,8 +24,10 @@ |
||
24 | 24 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
25 | 25 | $stmt->execute(); |
26 | 26 | $result = $stmt->get_result(); |
27 | - if($result->num_rows === 1) die('You already blocked this person!'); |
|
28 | -$stmt->close(); |
|
27 | + if($result->num_rows === 1) { |
|
28 | + die('You already blocked this person!'); |
|
29 | + } |
|
30 | + $stmt->close(); |
|
29 | 31 | |
30 | 32 | $stmt = $conn->prepare("INSERT INTO block (sender, reciever) VALUES (?, ?)"); |
31 | 33 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
@@ -21,10 +21,10 @@ |
||
21 | 21 | ] |
22 | 22 | ]; |
23 | 23 | |
24 | -if(!$__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) |
|
24 | +if (!$__user_h->if_subscribed(@$_SESSION['siteusername'], $request->name)) |
|
25 | 25 | { $request->error->message = "You aren't subscribed to this person!"; $request->error->status = ""; } |
26 | 26 | |
27 | -if($request->error->status == "OK") { |
|
27 | +if ($request->error->status == "OK") { |
|
28 | 28 | $stmt = $__db->prepare("DELETE FROM subscribers WHERE sender=:sender AND reciever=:reciever"); |
29 | 29 | $stmt->execute(array( |
30 | 30 | ':sender' => $request->sender, |
@@ -27,8 +27,8 @@ |
||
27 | 27 | if($request->error->status == "OK") { |
28 | 28 | $stmt = $__db->prepare("DELETE FROM subscribers WHERE sender=:sender AND reciever=:reciever"); |
29 | 29 | $stmt->execute(array( |
30 | - ':sender' => $request->sender, |
|
31 | - ':reciever' => $request->name, |
|
30 | + ':sender' => $request->sender, |
|
31 | + ':reciever' => $request->name, |
|
32 | 32 | )); |
33 | 33 | |
34 | 34 | header('Location: ' . $_SERVER['HTTP_REFERER']); |
@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | <?php |
12 | 12 | $search = $_SESSION['siteusername']; |
13 | 13 | |
14 | - if($_GET['filter'] == "time") { |
|
14 | + if ($_GET['filter'] == "time") { |
|
15 | 15 | $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY id DESC"); |
16 | 16 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
17 | 17 | $stmt->execute(); |
18 | - } else if($_GET['filter'] == "title") { |
|
18 | + } else if ($_GET['filter'] == "title") { |
|
19 | 19 | $stmt = $__db->prepare("SELECT * FROM videos WHERE author = :username ORDER BY title DESC"); |
20 | 20 | $stmt->bindParam(":username", $_SESSION['siteusername']); |
21 | 21 | $stmt->execute(); |
@@ -23,23 +23,23 @@ discard block |
||
23 | 23 | |
24 | 24 | $results_per_page = 12; |
25 | 25 | $number_of_result = $stmt->rowCount(); |
26 | - $number_of_page = ceil ($number_of_result / $results_per_page); |
|
26 | + $number_of_page = ceil($number_of_result/$results_per_page); |
|
27 | 27 | |
28 | - if (!isset ($_GET['page']) ) { |
|
28 | + if (!isset ($_GET['page'])) { |
|
29 | 29 | $page = 1; |
30 | 30 | } else { |
31 | - $page = (int)$_GET['page']; |
|
31 | + $page = (int) $_GET['page']; |
|
32 | 32 | } |
33 | 33 | |
34 | - $page_first_result = ($page - 1) * $results_per_page; |
|
34 | + $page_first_result = ($page - 1)*$results_per_page; |
|
35 | 35 | |
36 | - if($_GET['filter'] == "time") { |
|
36 | + if ($_GET['filter'] == "time") { |
|
37 | 37 | $stmt6 = $__db->prepare("SELECT * FROM videos WHERE author = :search ORDER BY id DESC LIMIT :pfirst, :pper"); |
38 | 38 | $stmt6->bindParam(":search", $search); |
39 | 39 | $stmt6->bindParam(":pfirst", $page_first_result); |
40 | 40 | $stmt6->bindParam(":pper", $results_per_page); |
41 | 41 | $stmt6->execute(); |
42 | - } else if($_GET['filter'] == "title") { |
|
42 | + } else if ($_GET['filter'] == "title") { |
|
43 | 43 | $stmt6 = $__db->prepare("SELECT * FROM videos WHERE author = :search ORDER BY title LIMIT :pfirst, :pper"); |
44 | 44 | $stmt6->bindParam(":search", $search); |
45 | 45 | $stmt6->bindParam(":pfirst", $page_first_result); |
@@ -52,15 +52,15 @@ discard block |
||
52 | 52 | <th style="width: 80%;"> |
53 | 53 | <small class="video-filter-options"> |
54 | 54 | Sort by: |
55 | - <a id="selector-title" onclick="changeFilter_Title();" <?php if($_GET['filter'] == "title") { ?>class="selected"<?php } ?>>Title</a> | |
|
56 | - <a id="selector-time" onclick="changeFilter_Time();" <?php if($_GET['filter'] == "time") { ?>class="selected"<?php } ?>>Time</a> |
|
55 | + <a id="selector-title" onclick="changeFilter_Title();" <?php if ($_GET['filter'] == "title") { ?>class="selected"<?php } ?>>Title</a> | |
|
56 | + <a id="selector-time" onclick="changeFilter_Time();" <?php if ($_GET['filter'] == "time") { ?>class="selected"<?php } ?>>Time</a> |
|
57 | 57 | </small> |
58 | 58 | </th> |
59 | 59 | <th style="margin: 5px; width: 20%;"></th> |
60 | 60 | </tr> |
61 | 61 | |
62 | 62 | <?php |
63 | - while($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
63 | + while ($video = $stmt6->fetch(PDO::FETCH_ASSOC)) { |
|
64 | 64 | $video['video_responses'] = $__video_h->get_video_responses($video['rid']); |
65 | 65 | $video['age'] = $__time_h->time_elapsed_string($video['publish']); |
66 | 66 | $video['duration'] = $__time_h->timestamp($video['duration']); |
@@ -69,19 +69,19 @@ discard block |
||
69 | 69 | $video['title'] = htmlspecialchars($video['title']); |
70 | 70 | $video['description'] = $__video_h->shorten_description($video['description'], 50); |
71 | 71 | |
72 | - if($video['thumbnail'] == ".png" && $video['filename'] == ".mp4") { |
|
72 | + if ($video['thumbnail'] == ".png" && $video['filename'] == ".mp4") { |
|
73 | 73 | $status = "Corrupted"; |
74 | - } else if($video['visibility'] == "v") { |
|
74 | + } else if ($video['visibility'] == "v") { |
|
75 | 75 | $status = "Approved"; |
76 | - } else if($video['visibility'] == "n") { |
|
76 | + } else if ($video['visibility'] == "n") { |
|
77 | 77 | $status = "Approved"; |
78 | - } else if($video['visibility'] == "o") { |
|
78 | + } else if ($video['visibility'] == "o") { |
|
79 | 79 | $status = "Disapproved"; |
80 | 80 | } else { |
81 | 81 | $status = "Unknown"; |
82 | 82 | } |
83 | 83 | |
84 | - if($video['commenting'] == "a") |
|
84 | + if ($video['commenting'] == "a") |
|
85 | 85 | $video['commentstatus'] = "Commenting allowed"; |
86 | 86 | else |
87 | 87 | $video['commentstatus'] = "Commenting disallowed"; |
@@ -85,10 +85,11 @@ |
||
85 | 85 | $status = "Unknown"; |
86 | 86 | } |
87 | 87 | |
88 | - if($video['commenting'] == "a") |
|
89 | - $video['commentstatus'] = "Commenting allowed"; |
|
90 | - else |
|
91 | - $video['commentstatus'] = "Commenting disallowed"; |
|
88 | + if($video['commenting'] == "a") { |
|
89 | + $video['commentstatus'] = "Commenting allowed"; |
|
90 | + } else { |
|
91 | + $video['commentstatus'] = "Commenting disallowed"; |
|
92 | + } |
|
92 | 93 | ?> |
93 | 94 | <tr style="margin-top: 5px;" id="videoslist"> |
94 | 95 | <td class="video-manager-left"> |