jhuesser/bzu-jodel-clone

View on GitHub

Showing 43 of 44 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

function putCall($apiURL, $postfields) {
$curl = curl_init();
 
curl_setopt_array($curl, array(
CURLOPT_URL => $apiURL,
Severity: Major
Found in functions/apicalls.php and 1 other location - About 4 hrs to fix
functions/apicalls.php on lines 54..85

Similar blocks of code found in 2 locations. Consider refactoring.
Open

function postCall($apiURL, $postfields){
 
 
$curl = curl_init();
 
 
Severity: Major
Found in functions/apicalls.php and 1 other location - About 4 hrs to fix
functions/apicalls.php on lines 98..126

Similar blocks of code found in 2 locations. Consider refactoring.
Open

if ($handle->uploaded) {
$handle->file_new_name_body = $withoutExt;
$handle->image_resize = true;
$handle->image_y = 300;
$handle->file_safe_name = true;
Severity: Major
Found in newcomment.php and 1 other location - About 3 hrs to fix
new.php on lines 52..71

Similar blocks of code found in 2 locations. Consider refactoring.
Open

if ($handle->uploaded) {
$handle->file_new_name_body = $withoutExt;
$handle->image_resize = true;
$handle->image_y = 300;
$handle->file_safe_name = true;
Severity: Major
Found in new.php and 1 other location - About 3 hrs to fix
newcomment.php on lines 64..83

Similar blocks of code found in 2 locations. Consider refactoring.
Open

} elseif($content == "comment"){
$postfields = "{\n \n \"abuseIDFK\": \"$reason\",\n \"commentIDFK\": \"$contentID\"\n,\n \"jodlerIDFK\": \"$userid\"\n}";
$callurl = $apiroot . "comments?filter=commentID,eq," . $contentID . "&transform=1";
$commentjson = getCall($callurl);
$scores = json_decode($commentjson, true);
Severity: Major
Found in functions/admintools.php and 1 other location - About 3 hrs to fix
functions/admintools.php on lines 59..84

Similar blocks of code found in 2 locations. Consider refactoring.
Open

if($content == "post"){
$postfields = "{\n \n \"abuseIDFK\": \"$reason\",\n \"jodelDFK\": \"$contentID\"\n,\n \"jodlerIDFK\": \"$userid\"\n}";
$callurl = $apiroot . "jodels?filter=jodelID,eq," . $contentID . "&transform=1";
$jodeljson = getCall($callurl);
$scores = json_decode($jodeljson, true);
Severity: Major
Found in functions/admintools.php and 1 other location - About 3 hrs to fix
functions/admintools.php on lines 72..84

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

Similar blocks of code found in 4 locations. Consider refactoring.
Open

'mod' => array(
'delete_posts' => false,
'mod_posts' => true,
'delete_users' => false,
'reset_paswd' => false,
Severity: Major
Found in config.php and 3 other locations - About 2 hrs to fix
config.php on lines 81..98
config.php on lines 100..118
config.php on lines 140..158

Similar blocks of code found in 4 locations. Consider refactoring.
Open

'superadmin' => array(
'delete_posts' => true,
'mod_posts' => true,
'delete_users' => true,
'reset_paswd' => true,
Severity: Major
Found in config.php and 3 other locations - About 2 hrs to fix
config.php on lines 100..118
config.php on lines 120..138
config.php on lines 140..158

Similar blocks of code found in 4 locations. Consider refactoring.
Open

'admin' => array(
'delete_posts' => true,
'mod_posts' => true,
'delete_users' => false,
'reset_paswd' => true,
Severity: Major
Found in config.php and 3 other locations - About 2 hrs to fix
config.php on lines 81..98
config.php on lines 120..138
config.php on lines 140..158

Similar blocks of code found in 4 locations. Consider refactoring.
Open

'user' => array(
'delete_posts' => false,
'mod_posts' => false,
'delete_users' => false,
'reset_paswd' => false,
Severity: Major
Found in config.php and 3 other locations - About 2 hrs to fix
config.php on lines 81..98
config.php on lines 100..118
config.php on lines 120..138

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

Identical blocks of code found in 2 locations. Consider refactoring.
Open

if(!isset($comment['imageIDFK'])){
echo $comment['comment'];
} else {
$imageurl = $apiroot . "images?transform=1&filter=imageID,eq," . $comment['imageIDFK'];
$imagejson = getCall($imageurl);
Severity: Major
Found in comments.php and 1 other location - About 1 hr to fix
user/mod.php on lines 287..297

Identical blocks of code found in 2 locations. Consider refactoring.
Open

if(!isset($comment['imageIDFK'])){
echo $comment['comment'];
} else {
$imageurl = $apiroot . "images?transform=1&filter=imageID,eq," . $comment['imageIDFK'];
$imagejson = getCall($imageurl);
Severity: Major
Found in user/mod.php and 1 other location - About 1 hr to fix
comments.php on lines 186..196
Severity
Category
Status
Source
Language