jhuesser/bzu-jodel-clone

View on GitHub

Showing 15 of 44 total issues

Function voteJodel has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

function voteJodel($jodel2vote, $how2vote){
global $apiroot, $baseurl, $config;
//Get the post to upvote and users who voted this post
$callurl = $apiroot . "jodels?transform=1&filter=jodelID,eq," . $jodel2vote;
$jodeljson = getCall($callurl);
Severity: Minor
Found in functions/votes.php - About 2 hrs to fix

Function voteComment has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

function voteComment( $comment2vote, $how2vote){
global $apiroot, $baseurl, $config;
$userid = $_SESSION['userid'];
$apiroot = $config->apiUrl;
$commentsjson = getCall($apiroot . "comments?transform=1&filter=commentID,eq," . $comment2vote);
Severity: Minor
Found in functions/votes.php - About 2 hrs to fix

Method voteComment has 65 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function voteComment( $comment2vote, $how2vote){
global $apiroot, $baseurl, $config;
$userid = $_SESSION['userid'];
$apiroot = $config->apiUrl;
$commentsjson = getCall($apiroot . "comments?transform=1&filter=commentID,eq," . $comment2vote);
Severity: Major
Found in functions/votes.php - About 2 hrs to fix

Method voteJodel has 63 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function voteJodel($jodel2vote, $how2vote){
global $apiroot, $baseurl, $config;
//Get the post to upvote and users who voted this post
$callurl = $apiroot . "jodels?transform=1&filter=jodelID,eq," . $jodel2vote;
$jodeljson = getCall($callurl);
Severity: Major
Found in functions/votes.php - About 2 hrs to fix

File mod.php has 271 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
session_start();
//Include functions & meta data
require '../functions/apicalls.php';
require '../functions/jodelmeta.php';
Severity: Minor
Found in user/mod.php - About 2 hrs to fix

Method jodelage has 44 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function jodelage($postdate)
{
$now = date('Y-m-d H:i:s');
$now = date_create_from_format('Y-m-d H:i:s', $now);
$postdate = date_create_from_format('Y-m-d H:i:s', $postdate);
Severity: Minor
Found in functions/jodelmeta.php - About 1 hr to fix

Function manipulateUser has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

function manipulateUser($user, $role, $mycaps){
global $apiroot;
$execute = false;
switch($role){
case 0:
Severity: Minor
Found in functions/usermanipulation.php - About 1 hr to fix

Method manipulateUser has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function manipulateUser($user, $role, $mycaps){
global $apiroot;
$execute = false;
switch($role){
case 0:
Severity: Minor
Found in functions/usermanipulation.php - About 1 hr to fix

Method reportContent has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function reportContent( $content, $contentID, $reason){
global $apiroot;
$userid = $_SESSION['userid'];
if($content == "post"){
$postfields = "{\n \n \"abuseIDFK\": \"$reason\",\n \"jodelDFK\": \"$contentID\"\n,\n \"jodlerIDFK\": \"$userid\"\n}";
Severity: Minor
Found in functions/admintools.php - About 1 hr to fix

Method deleteComment has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function deleteComment($commentID){
global $apiroot, $config, $baseurl;
//get uploaddir
$uploaddir = $config->image_upload_dir;
//get imageID of comment
Severity: Minor
Found in functions/jodelmeta.php - About 1 hr to fix

Function jodelage has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

function jodelage($postdate)
{
$now = date('Y-m-d H:i:s');
$now = date_create_from_format('Y-m-d H:i:s', $now);
$postdate = date_create_from_format('Y-m-d H:i:s', $postdate);
Severity: Minor
Found in functions/jodelmeta.php - About 1 hr to fix

Consider simplifying this complex logical expression.
Open

if($caps['promote_to_mod'] == true || $caps['promote_to_admin'] == true || $caps['promote_to_superadmin'] == true || $caps['promote_to_user'] == true || $caps['ban'] == true || $caps['delete_users'] == true || $caps['change_karma'] == true ) {
//can manage users
echo '<a href="user/usermgmt.php" class="list-group-item list-group-item-action">Usermanagement</a>';
$hascaps = true;
}
Severity: Major
Found in user.php - About 1 hr to fix

Function deleteComment has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function deleteComment($commentID){
global $apiroot, $config, $baseurl;
//get uploaddir
$uploaddir = $config->image_upload_dir;
//get imageID of comment
Severity: Minor
Found in functions/jodelmeta.php - About 25 mins to fix

Function getAccountType has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function getAccountType($config, $acctype){
//init array
$usertype = (object) array();
switch($acctype){
case 0:
Severity: Minor
Found in functions/admintools.php - About 25 mins to fix

Function reportContent has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

function reportContent( $content, $contentID, $reason){
global $apiroot;
$userid = $_SESSION['userid'];
if($content == "post"){
$postfields = "{\n \n \"abuseIDFK\": \"$reason\",\n \"jodelDFK\": \"$contentID\"\n,\n \"jodlerIDFK\": \"$userid\"\n}";
Severity: Minor
Found in functions/admintools.php - About 25 mins to fix
Severity
Category
Status
Source
Language