OmarElGabry/miniPHP

View on GitHub

Showing 119 of 119 total issues

Method upload has 42 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private static function upload($file, $dir, $id, $type = "file"){

        $mimeTypes  = self::getAllowedMime($type);

        $validation = new Validation();
Severity: Minor
Found in app/models/Uploader.php - About 1 hr to fix

    Method updateUserInfo has 42 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function updateUserInfo($userId, $adminId, $name, $password, $role){
    
             $user = $this->getProfileInfo($userId);
    
             $name = (!empty($name) && $name !== $user["name"])? $name: null;
    Severity: Minor
    Found in app/models/Admin.php - About 1 hr to fix

      Method alphaID has 42 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function alphaID($in, $to_num = false, $pad_up = false, $pass_key = null) {
              $out = '';
              $index = 'abcdefghijklmnopqrstuvwxyz123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
              $base = strlen($index);
      
      
      Severity: Minor
      Found in app/core/Encryption.php - About 1 hr to fix

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

             private static function getRevokeEmailBody($userData, $data){
        
                 $body  = "";
                 $body .= "Dear " . $userData["name"] . ", \n\nYour email has been changed, You can revoke your changes from the following link: ";
                 $body .= Config::get('EMAIL_REVOKE_EMAIL_URL') . "?id=" . urlencode(Encryption::encryptId($userData["id"])) . "&token=" . urlencode($data["email_token"]);
        Severity: Major
        Found in app/core/Email.php and 3 other locations - About 1 hr to fix
        app/core/Email.php on lines 94..103
        app/core/Email.php on lines 115..124
        app/core/Email.php on lines 157..166

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 114.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

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

             private static function getUpdateEmailBody($userData, $data){
        
                 $body  = "";
                 $body .= "Dear " . $userData["name"] . ", \n\nPlease confirm your new email from the following link: ";
                 $body .= Config::get('EMAIL_UPDATE_EMAIL_URL') . "?id=" . urlencode(Encryption::encryptId($userData["id"])) . "&token=" . urlencode($data["pending_email_token"]);
        Severity: Major
        Found in app/core/Email.php and 3 other locations - About 1 hr to fix
        app/core/Email.php on lines 94..103
        app/core/Email.php on lines 115..124
        app/core/Email.php on lines 136..145

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 114.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

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

             private static function getEmailVerificationBody($userData, $data){
        
                 $body  = "";
                 $body .= "Dear " . $userData["name"] . ", \n\nPlease verify your email from the following link: ";
                 $body .= Config::get('EMAIL_EMAIL_VERIFICATION_URL') . "?id=" . urlencode(Encryption::encryptId($userData["id"])) . "&token=" . urlencode($data["email_token"]);
        Severity: Major
        Found in app/core/Email.php and 3 other locations - About 1 hr to fix
        app/core/Email.php on lines 94..103
        app/core/Email.php on lines 136..145
        app/core/Email.php on lines 157..166

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 114.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

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

             private static function getPasswordResetBody($userData, $data){
        
                 $body = "";
                 $body .= "Dear " . $userData["name"] . ", \n\nYou can reset your password from the following link: ";
                 $body .= Config::get('EMAIL_PASSWORD_RESET_URL') . "?id=" . urlencode(Encryption::encryptId($userData["id"])) . "&token=" . urlencode($data["password_token"]);
        Severity: Major
        Found in app/core/Email.php and 3 other locations - About 1 hr to fix
        app/core/Email.php on lines 115..124
        app/core/Email.php on lines 136..145
        app/core/Email.php on lines 157..166

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 114.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Function update has 41 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                update: function(){
                    $("#list-newsfeed .header .edit").off('click').on('click', function() {
        
                        var newsfeedBody = $(this).parent().parent().parent().parent();
                        var newsfeedId   = newsfeedBody.attr("id");
        Severity: Minor
        Found in public/js/main.js - About 1 hr to fix

          Function update has 41 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  update: function(){
          
                      $("#list-comments .header .edit").off('click').on('click', function() {
          
                          var commentBody = $(this).parent().parent().parent().parent();
          Severity: Minor
          Found in public/js/main.js - About 1 hr to fix

            Method sendEmail has 40 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                 public static function sendEmail($type, $email, $userData, $data){
            
                     $mail             = new PHPMailer();
                     $mail->IsSMTP();
            
            
            Severity: Minor
            Found in app/core/Email.php - About 1 hr to fix

              Method updateEmail has 38 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function updateEmail($userId, $emailToken){
              
                      if (empty($userId) || empty($emailToken)) {
                          return false;
                      }
              Severity: Minor
              Found in app/models/User.php - About 1 hr to fix

                Function upload has 37 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    upload: function(url, fileData, callback){
                
                        $.ajax({
                            url: config.root + url,
                            type: "POST",
                Severity: Minor
                Found in public/js/main.js - About 1 hr to fix

                  Function addError has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                      private function addError($rule, $placeholder, $value, $args = []){
                  
                          if(isset($this->ruleMessages[$rule])){
                              $this->errors[] = $this->ruleMessages[$rule];
                          }
                  Severity: Minor
                  Found in app/models/Validation.php - About 1 hr to fix

                  Cognitive Complexity

                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                  A method's cognitive complexity is based on a few simple rules:

                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                  • Code is considered more complex for each "break in the linear flow of the code"
                  • Code is considered more complex when "flow breaking structures are nested"

                  Further reading

                  Method register has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function register($name, $email, $password, $confirmPassword, $captcha){
                  
                          $isValid = true;
                          $validation = new Validation();
                  
                  
                  Severity: Minor
                  Found in app/models/Login.php - About 1 hr to fix

                    Function validateData has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        validateData: function (result, targetBlock, errorFunc, errorType, returnVal){
                    
                            // 1. clear all existing error or success messages
                            helpers.clearMessages(targetBlock);
                    
                    
                    Severity: Minor
                    Found in public/js/main.js - About 1 hr to fix

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

                                  $("#form-update-user-info").submit(function(e){
                                      e.preventDefault();
                                      ajax.send("Admin/updateUserInfo", helpers.serialize(this, "user_id="+config.userId), updateUserInfoCallBack, "#form-update-user-info");
                                  });
                      Severity: Major
                      Found in public/js/main.js and 1 other location - About 1 hr to fix
                      public/js/main.js on lines 673..676

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 62.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

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

                                  $("#form-create-comment").submit(function(e){
                                      e.preventDefault();
                                      ajax.send("Comments/create", helpers.serialize(this, "post_id="+config.postId), createCommentCallBack, "#form-create-comment");
                                  });
                      Severity: Major
                      Found in public/js/main.js and 1 other location - About 1 hr to fix
                      public/js/main.js on lines 860..863

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 62.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Method validate has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public function validate($data, $skip = false){
                      
                              $passed = true;
                      
                              foreach($data as $placeholder => $rules){
                      Severity: Minor
                      Found in app/models/Validation.php - About 1 hr to fix

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

                            stopSpinner: function(spinnerBlock, spinnerEle){
                                if(!helpers.empty(spinnerBlock) ) {
                                    // var spinner = $(spinnerBlock).nextAll(".spinner:eq(0)");
                                    $(spinnerEle).remove();
                                    $(spinnerBlock).css("opacity","1");
                        Severity: Major
                        Found in public/js/main.js and 1 other location - About 1 hr to fix
                        public/js/main.js on lines 131..138

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 61.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

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

                            runSpinner: function(spinnerBlock, spinnerEle){
                        
                                if(!helpers.empty(spinnerBlock)) {
                                    // var spinner = $(spinnerBlock).nextAll(".spinner:eq(0)");
                                    $(spinnerEle).show();
                        Severity: Major
                        Found in public/js/main.js and 1 other location - About 1 hr to fix
                        public/js/main.js on lines 139..145

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 61.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Severity
                        Category
                        Status
                        Source
                        Language