jhuesser/bzu-jodel-clone

View on GitHub
report.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
session_start();
//Set default values for head & load it
$title = "Report | SocialDomayn";
$stylesheet = "jodel.css";
include 'functions/header.php';
//Load API functions
require 'functions/apicalls.php';
require 'functions/admintools.php';
$config = require('config.php');
$apiroot = $config->apiUrl;
 
if(!isset($_SESSION['userid'])) {
header('Location: '. $config->baseUrl . 'login.php');
}
 
if(!isset($_GET['type']) && !isset($_GET['id'])){
die("You need to select content");
}
 
//qurey the ID of the user
$userid = $_SESSION['userid'];
//Get data about the user & save it in $_SESSION values.
$userjson = getCall( $apiroot . "jodlers?transform=1&filter=jodlerID,eq," . $userid);
$user = json_decode($userjson, true);
foreach($user['jodlers'] as $jodler){
$karma = $jodler['karma'];
$accstate = $jodler['account_state'];
}
?>
 
<!-- main menu-->
<div id="top"></div>
 
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="jodels.php"><i class="fa fa-chevron-left" aria-hidden="true"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:window.location.reload();"><i class="fa fa-refresh" aria-hidden="true"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="user.php"><i class="fa fa-user" aria-hidden="true"></i><?php echo $_SESSION['karma'];?></a>
</li>
</ul>
 
<div class="test"></div>
<!-- end main menu -->
<?php
 
$_SESSION['karma'] = $karma;
$_SESSION['acctype'] = $accstate;
 
$type = $_GET['type'];
$contentID = $_GET['id'];
 
if(isset($_GET['reason'])){
//user wants to report a post
//save the reason
$reason = $_GET['reason'];
//save report in DB
$reported = reportContent( $type, $contentID, $reason);
//if a post is reported, redirect to a post below
if($_GET['type'] == "post"){
$nextpost = $contentID--;
}
header('Location: ' . $apiroot->baseUrl . 'jodels.php#' . $contentID);
}
//get all reasons and save them in an array
$abuseurl = $apiroot . "abuse?transform=1";
$absuejson = getCall($abuseurl);
$abusearray = json_decode($absuejson, true);
 
?>
 
<h1>Please select the reason for reporting this post</h1>
<div class="list-group">
<div class="container">
<?php
foreach($abusearray['abuse'] as $abuse){
//list all reasons
if($abuse['abuseID'] != $config->postmeta['system_mod_id']){
$abusedesc = $abuse['abusedesc'];
$message = "?type=" . $type . "&id=" . $contentID . "&reason=" . $abuse['abuseID'];
?>
<a href="<?php echo $message ?>" class="list-group-item list-group-item-action"><?php echo $abusedesc; ?></a>
 
<?php
}
 
}
 
 
 
?>
 
</div>
</div>
<?php
include 'functions/footer.php';