OpenSRP/opensrp-client-anc

View on GitHub
opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java

Summary

Maintainability
F
1 wk
Test Coverage

File Utils.java has 888 lines of code (exceeds 250 allowed). Consider refactoring.
Open

package org.smartregister.anc.library.util;

import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;

    Utils has 64 methods (exceeds 20 allowed). Consider refactoring.
    Open

    public class Utils extends org.smartregister.util.Utils {
        public static final SimpleDateFormat DB_DF = new SimpleDateFormat(ConstantsUtils.SQLITE_DATE_TIME_FORMAT);
        public static final SimpleDateFormat CONTACT_DF = new SimpleDateFormat(ConstantsUtils.CONTACT_DATE_FORMAT);
        public static final SimpleDateFormat CONTACT_SUMMARY_DF = new SimpleDateFormat(ConstantsUtils.CONTACT_SUMMARY_DATE_FORMAT);
        public static final ArrayList<String> ALLOWED_LEVELS;

      Method returnTranslatedStringJoinedValue has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
      Open

          @SuppressLint({"NewApi"})
          public static String returnTranslatedStringJoinedValue(String value) {
              try {
                  if (StringUtils.isNotBlank(value) && value.startsWith("[")) {
                      if (Utils.checkJsonArrayString(value)) {

      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

      Consider simplifying this complex logical expression.
      Open

                  if ((key.equals(ConstantsUtils.PrescriptionUtils.NAUSEA_PHARMA) || key.equals(ConstantsUtils.PrescriptionUtils.ANTACID) || key.equals(ConstantsUtils.PrescriptionUtils.PENICILLIN) || key.equals(ConstantsUtils.PrescriptionUtils.ANTIBIOTIC) || key.equals(ConstantsUtils.PrescriptionUtils.IFA_MEDICATION) || key.equals(ConstantsUtils.PrescriptionUtils.VITA)
                          || key.equals(ConstantsUtils.PrescriptionUtils.MAG_CALC) || key.equals(ConstantsUtils.PrescriptionUtils.ALBEN_MEBEN) || key.equals(ConstantsUtils.PrescriptionUtils.PREP) || key.equals(ConstantsUtils.PrescriptionUtils.SP) || key.equals(ConstantsUtils.PrescriptionUtils.IFA) || key.equals(ConstantsUtils.PrescriptionUtils.ASPIRIN) || key.equals(ConstantsUtils.PrescriptionUtils.CALCIUM)) && (value != null && value.equals("0"))) {
                      Context context = AncLibrary.getInstance().getApplicationContext();
                      String translationIsOn = Utils.getProperties(context).getProperty(ConstantsUtils.Properties.WIDGET_VALUE_TRANSLATED, "false");
                      if (StringUtils.isNotBlank(value) && Boolean.parseBoolean(translationIsOn)) {
      Severity: Critical
      Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 3 hrs to fix

        Method hasPendingRequiredFields has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
        Open

            public static boolean hasPendingRequiredFields(JSONObject object) throws Exception {
                if (object != null) {
                    Iterator<String> keys = object.keys();
                    while (keys.hasNext()) {
                        String key = keys.next();

        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 processValue has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
        Open

            private static String processValue(String key, Facts facts) {
                String value = "";
                if (facts.get(key) instanceof String) {
                    value = facts.get(key);
                    if ((key.equals(ConstantsUtils.PrescriptionUtils.NAUSEA_PHARMA) || key.equals(ConstantsUtils.PrescriptionUtils.ANTACID) || key.equals(ConstantsUtils.PrescriptionUtils.PENICILLIN) || key.equals(ConstantsUtils.PrescriptionUtils.ANTIBIOTIC) || key.equals(ConstantsUtils.PrescriptionUtils.IFA_MEDICATION) || key.equals(ConstantsUtils.PrescriptionUtils.VITA)

        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 buildRepeatingGroupValues has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
        Open

            public static HashMap<String, HashMap<String, String>> buildRepeatingGroupValues(@NonNull JSONArray fields, @NonNull String fieldName) throws JSONException {
                ArrayList<String> keysArrayList = new ArrayList<>();
                JSONObject jsonObject = JsonFormUtils.getFieldJSONObject(fields, fieldName);
                HashMap<String, HashMap<String, String>> repeatingGroupMap = new LinkedHashMap<>();
                if (jsonObject != null) {

        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 processButtonAlertStatus has 58 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static void processButtonAlertStatus(Context context, Button dueButton, TextView
                    contactTextView,
                                                        ButtonAlertStatus buttonAlertStatus) {
                if (dueButton != null) {
                    dueButton.setVisibility(View.VISIBLE);

          Method processButtonAlertStatus has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
          Open

              public static void processButtonAlertStatus(Context context, Button dueButton, TextView
                      contactTextView,
                                                          ButtonAlertStatus buttonAlertStatus) {
                  if (dueButton != null) {
                      dueButton.setVisibility(View.VISIBLE);

          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 proceedToContact has 49 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public static void proceedToContact(String baseEntityId, HashMap<String, String> personObjectClient, Context context) {
                  try {
          
                      Intent intent = new Intent(context.getApplicationContext(), ContactJsonFormActivity.class);
                      Contact quickCheck = new Contact();

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

                @SuppressLint({"NewApi"})
                public static String returnTranslatedStringJoinedValue(String value) {
                    try {
                        if (StringUtils.isNotBlank(value) && value.startsWith("[")) {
                            if (Utils.checkJsonArrayString(value)) {

              Method cleanValueResult has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
              Open

                  private static String cleanValueResult(String result) {
                      List<String> nonEmptyItems = new ArrayList<>();
                      for (String item : result.split(",")) {
                          if (item.length() > 0 && StringUtils.isNotBlank(item)) {
                              nonEmptyItems.add(item);

              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 createSavePdf has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
              Open

                  public void createSavePdf(Context context, List<YamlConfig> yamlConfigList, Facts facts,String womanName) throws FileNotFoundException {
              
                      String FILENAME = womanName+"_"+context.getResources().getString(R.string.contact_summary_data_file);
                      String filePath = getAppPath(context) + FILENAME;
              
              

              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 getDefaultLocation has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
              Open

                  private static String getDefaultLocation(String level, String villageId) {
                      Location village = Utils.getLocationById(villageId);
                      Location facility = Utils.getLocationById(village != null ? village.getProperties().getParentId() : "");
                      Location subDistrict = Utils.getLocationById(facility != null ? facility.getProperties().getParentId() : "");
                      Location district = Utils.getLocationById(subDistrict != null ? subDistrict.getProperties().getParentId() : "");

              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 createPreviousVisitFromGroup has 30 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public static void createPreviousVisitFromGroup(@NonNull String strGroup, @NonNull String
                          baseEntityId) throws JSONException {
                      JSONObject jsonObject = new JSONObject(strGroup);
                      Iterator<String> repeatingGroupKeys = jsonObject.keys();
                      List<String> currentFormSubmissionIds = new ArrayList<>();

                Method getButtonAlertStatus has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public static ButtonAlertStatus getButtonAlertStatus
                            (Map<String, String> details, Context context, boolean isProfile) {
                        String contactStatus = details.get(DBConstantsUtils.KeyUtils.CONTACT_STATUS);
                
                        String nextContactDate = details.get(DBConstantsUtils.KeyUtils.NEXT_CONTACT_DATE);

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

                      public void createSavePdf(Context context, List<YamlConfig> yamlConfigList, Facts facts,String womanName) throws FileNotFoundException {
                  
                          String FILENAME = womanName+"_"+context.getResources().getString(R.string.contact_summary_data_file);
                          String filePath = getAppPath(context) + FILENAME;
                  
                  

                    Method getButtonAlertStatus has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public static ButtonAlertStatus getButtonAlertStatus
                                (Map<String, String> details, Context context, boolean isProfile) {
                            String contactStatus = details.get(DBConstantsUtils.KeyUtils.CONTACT_STATUS);
                    
                            String nextContactDate = details.get(DBConstantsUtils.KeyUtils.NEXT_CONTACT_DATE);

                    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 buildRepeatingGroupValues has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public static HashMap<String, HashMap<String, String>> buildRepeatingGroupValues(@NonNull JSONArray fields, @NonNull String fieldName) throws JSONException {
                            ArrayList<String> keysArrayList = new ArrayList<>();
                            JSONObject jsonObject = JsonFormUtils.getFieldJSONObject(fields, fieldName);
                            HashMap<String, HashMap<String, String>> repeatingGroupMap = new LinkedHashMap<>();
                            if (jsonObject != null) {

                      Method getDisplayTemplate has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          private static String getDisplayTemplate(Context context, String alertStatus,
                                                                   boolean isProfile) {
                              String displayTemplate;
                              if (StringUtils.isNotBlank(alertStatus) && !isProfile) {
                                  switch (alertStatus) {

                        Avoid deeply nested control flow statements.
                        Open

                                                if (isRequiredField && ((fieldObject.has(JsonFormConstants.VALUE) && TextUtils.isEmpty(
                                                        fieldObject.getString(JsonFormConstants.VALUE))) || !fieldObject.has(JsonFormConstants.VALUE))) {
                                                    //TO DO Remove/ Alter logical condition
                                                    return true;
                                                }
                        Severity: Major
                        Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 45 mins to fix

                          Avoid deeply nested control flow statements.
                          Open

                                                  if (fieldObject.has(JsonFormConstants.IS_VISIBLE) && !fieldObject.getBoolean(JsonFormConstants.IS_VISIBLE)) {
                                                      isRequiredField = false;
                                                  }
                          Severity: Major
                          Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 45 mins to fix

                            Consider simplifying this complex logical expression.
                            Open

                                        if (StringUtils.isNotBlank(value) && value.contains(".") && !value.contains(",") && value.charAt(0) != '[' && !value.contains("{") && value.contains(JsonFormConstants.TEXT)) {
                                            return NativeFormLangUtils.translateDatabaseString(value.trim(), AncLibrary.getInstance().getApplicationContext());
                                        }
                            Severity: Major
                            Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 40 mins to fix

                              Method getDisplayTemplate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                                  private static String getDisplayTemplate(Context context, String alertStatus,
                                                                           boolean isProfile) {
                                      String displayTemplate;
                                      if (StringUtils.isNotBlank(alertStatus) && !isProfile) {
                                          switch (alertStatus) {
                              Severity: Minor
                              Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 35 mins 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 isTableExists has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                                  public static boolean isTableExists(@NonNull SQLiteDatabase sqliteDatabase, @NonNull String
                                          tableName) {
                                      Cursor cursor = sqliteDatabase.rawQuery(
                                              "SELECT name FROM sqlite_master WHERE type='table' AND name='" + tableName + "'",
                                              null
                              Severity: Minor
                              Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 35 mins 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 prefillInjectableFacts has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                              Open

                                  private void prefillInjectableFacts(Facts facts, String template) {
                                      String[] relevanceToken = template.split(",");
                                      String key;
                                      for (String token : relevanceToken) {
                                          if (token.contains("{") && token.contains("}")) {
                              Severity: Minor
                              Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 35 mins 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

                              Avoid too many return statements within this method.
                              Open

                                              return NativeFormLangUtils.translateDatabaseString(value.trim(), AncLibrary.getInstance().getApplicationContext());
                              Severity: Major
                              Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                            return "";
                                Severity: Major
                                Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                              return value;
                                  Severity: Major
                                  Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 30 mins to fix

                                    Method getCurrentLocation has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                    Open

                                        public static String getCurrentLocation(String level, JsonFormActivity jsonFormView) {
                                            String villageId = CoreLibrary.getInstance().context().allSharedPreferences().fetchUserLocalityId(CoreLibrary.getInstance().context().allSharedPreferences().fetchRegisteredANM());
                                            String currentLocation = "";
                                    
                                            try {
                                    Severity: Minor
                                    Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 25 mins 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 finalizeForm has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                    Open

                                        public static void finalizeForm(Activity context, HashMap<String, String> womanDetails, boolean isRefferal) {
                                            try {
                                    
                                                Intent contactSummaryFinishIntent = new Intent(context, ContactSummaryFinishActivity.class);
                                                contactSummaryFinishIntent
                                    Severity: Minor
                                    Found in opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java - About 25 mins 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

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

                                        private void prefillInjectableFacts(Facts facts, String template) {
                                            String[] relevanceToken = template.split(",");
                                            String key;
                                            for (String token : relevanceToken) {
                                                if (token.contains("{") && token.contains("}")) {
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/adapter/ContactSummaryFinishAdapter.java on lines 83..94

                                    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 101.

                                    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

                                            } else {
                                                switch (alertStatus) {
                                                    case ConstantsUtils.AlertStatusUtils.IN_PROGRESS:
                                                        displayTemplate = context.getString(R.string.contact_in_progress_no_break);
                                                        break;
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 491..503

                                    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 78.

                                    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

                                            if (StringUtils.isNotBlank(alertStatus) && !isProfile) {
                                                switch (alertStatus) {
                                                    case ConstantsUtils.AlertStatusUtils.IN_PROGRESS:
                                                        displayTemplate = context.getString(R.string.contact_in_progress);
                                                        break;
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 503..515

                                    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 78.

                                    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

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

                                                    for (int i = 0; i < attentionFlagValueArray.size(); i++) {
                                                        String textToTranslate = attentionFlagValueArray.get(i).trim();
                                                        String translatedText = StringUtils.isNotBlank(textToTranslate) ? NativeFormLangUtils.translateDatabaseString(textToTranslate, AncLibrary.getInstance().getApplicationContext()) : "";
                                                        translatedList.add(translatedText);
                                                    }
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/activity/ContactJsonFormActivity.java on lines 74..78

                                    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 72.

                                    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

                                                        case ConstantsUtils.AlertStatusUtils.EXPIRED:
                                                            dueButton.setBackgroundColor(context.getResources().getColor(R.color.vaccine_red_bg_st));
                                                            dueButton.setTextColor(context.getResources().getColor(R.color.white));
                                                            dueButton.setText(context.getString(R.string.due_delivery));
                                                            break;
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 564..568

                                    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

                                                        case ConstantsUtils.AlertStatusUtils.DELIVERY_DUE:
                                                            dueButton.setBackground(context.getResources().getDrawable(R.drawable.contact_due));
                                                            dueButton.setTextColor(context.getResources().getColor(R.color.vaccine_blue_bg_st));
                                                            dueButton.setText(context.getString(R.string.due_delivery));
                                                            break;
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 569..573

                                    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 4 locations. Consider refactoring.
                                    Open

                                                        case ConstantsUtils.AlertStatusUtils.NOT_DUE:
                                                            dueButton.setBackground(context.getResources().getDrawable(R.drawable.contact_not_due));
                                                            dueButton.setTextColor(context.getResources().getColor(R.color.dark_grey));
                                                            break;
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 548..551
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 552..555
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 556..559

                                    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 46.

                                    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

                                                        case ConstantsUtils.AlertStatusUtils.IN_PROGRESS:
                                                            dueButton.setBackgroundColor(context.getResources().getColor(R.color.progress_orange));
                                                            dueButton.setTextColor(context.getResources().getColor(R.color.white));
                                                            break;
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 552..555
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 556..559
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 560..563

                                    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 46.

                                    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

                                                        case ConstantsUtils.AlertStatusUtils.DUE:
                                                            dueButton.setBackground(context.getResources().getDrawable(R.drawable.contact_due));
                                                            dueButton.setTextColor(context.getResources().getColor(R.color.vaccine_blue_bg_st));
                                                            break;
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 548..551
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 556..559
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 560..563

                                    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 46.

                                    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

                                                        case ConstantsUtils.AlertStatusUtils.OVERDUE:
                                                            dueButton.setBackgroundColor(context.getResources().getColor(R.color.vaccine_red_bg_st));
                                                            dueButton.setTextColor(context.getResources().getColor(R.color.white));
                                                            break;
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 548..551
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 552..555
                                    opensrp-anc/src/main/java/org/smartregister/anc/library/util/Utils.java on lines 560..563

                                    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 46.

                                    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

                                    There are no issues that match your filters.

                                    Category
                                    Status