@@ -18,20 +18,20 @@ |
||
18 | 18 | session_start(); |
19 | 19 | $name = $_GET['v']; |
20 | 20 | |
21 | -if(!isset($_SESSION['siteusername']) || !isset($_GET['v'])) { |
|
21 | +if (!isset($_SESSION['siteusername']) || !isset($_GET['v'])) { |
|
22 | 22 | die("You are not logged in or you did not put in an argument"); |
23 | 23 | } |
24 | 24 | |
25 | -if(!is_int((int)$_GET['rating'])) { |
|
25 | +if (!is_int((int) $_GET['rating'])) { |
|
26 | 26 | //header('Location: ' . $_SERVER['HTTP_REFERER']); |
27 | 27 | } |
28 | 28 | |
29 | -if((1 <= (int)$_GET['rating']) && ((int)$_GET['rating']) <= 5) { |
|
29 | +if ((1 <= (int) $_GET['rating']) && ((int) $_GET['rating']) <= 5) { |
|
30 | 30 | $stmt = $conn->prepare("SELECT * FROM stars WHERE sender = ? AND reciever = ?"); |
31 | 31 | $stmt->bind_param("ss", $_SESSION['siteusername'], $name); |
32 | 32 | $stmt->execute(); |
33 | 33 | $result = $stmt->get_result(); |
34 | - if($result->num_rows === 1) { |
|
34 | + if ($result->num_rows === 1) { |
|
35 | 35 | $_user_insert_utils->remove_star_video($_SESSION['siteusername'], $name); |
36 | 36 | goto skip; |
37 | 37 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | ?> |
18 | 18 | <?php |
19 | 19 | |
20 | -if($group['group_author'] == $_SESSION['siteusername']) { |
|
20 | +if ($group['group_author'] == $_SESSION['siteusername']) { |
|
21 | 21 | $stmt = $conn->prepare("DELETE FROM user_groups WHERE id = ?"); |
22 | 22 | $stmt->bind_param("s", $_GET['id']); |
23 | 23 | $stmt->execute(); |
@@ -17,7 +17,7 @@ |
||
17 | 17 | $group = $_video_fetch_utils->fetch_group_id($_GET['id']); |
18 | 18 | ?> |
19 | 19 | <?php |
20 | -if($group['group_author'] == $_SESSION['siteusername']) { |
|
20 | +if ($group['group_author'] == $_SESSION['siteusername']) { |
|
21 | 21 | $stmt = $conn->prepare("DELETE FROM group_members WHERE togroup = ? AND username = ?"); |
22 | 22 | $stmt->bind_param("ss", $_GET['id'], $_GET['user']); |
23 | 23 | $stmt->execute(); |
@@ -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_banner( |
26 | 26 | "", |
27 | 27 | $_SESSION['siteusername'] |
@@ -17,7 +17,7 @@ |
||
17 | 17 | $video = $_video_fetch_utils->get_quicklist_video($_GET['id']); |
18 | 18 | ?> |
19 | 19 | <?php |
20 | -if($video['author'] == $_SESSION['siteusername']) { |
|
20 | +if ($video['author'] == $_SESSION['siteusername']) { |
|
21 | 21 | $stmt = $conn->prepare("DELETE FROM quicklist_videos WHERE id = ?"); |
22 | 22 | $stmt->bind_param("s", $_GET['id']); |
23 | 23 | $stmt->execute(); |
@@ -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("INSERT INTO group_members (togroup, username) VALUES (?, ?)"); |
23 | 23 | $stmt->bind_param("ss", $_GET['id'], $_SESSION['siteusername']); |
24 | 24 | $stmt->execute(); |
@@ -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(); |