MAKENTNU/web

View on GitHub

Showing 86 of 230 total issues

Function dirty has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

$.fn.dirty = function(options) {
 
if (typeof options === "string" && /^(isDirty|isClean|refreshEvents|resetForm|setAsClean|setAsDirty|showDirtyFields)$/i.test(options)) {
//Check if we have an instance of dirty for this form
// TODO: check if this is DOM or jQuery object
Severity: Minor
Found in src/web/static/lib/jquery/jquery.dirty.js - About 1 hr to fix

    Function getFutureReservations has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function getFutureReservations(machineID, forceNewTime) {
    /**
    * Retrieves future reservations and all reservation rules from the server.
    */
    let jsonUrl = `${LANG_PREFIX}/api/reservation/machines/${machineID}/data/`;
    Severity: Minor
    Found in src/make_queue/static/make_queue/js/reservation_form.js - About 1 hr to fix

      Function addVoterPost has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function addVoterPost($element, pk, forced) {
      $.ajaxSetup({
      beforeSend: function (xhr, settings) {
      xhr.setRequestHeader("X-CSRFToken", csrfToken);
      },
      Severity: Minor
      Found in src/checkin/static/checkin/js/suggest_skill.js - About 1 hr to fix

        Function togglePost has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function togglePost($element, postURL, model, toggle) {
        $.ajaxSetup({
        beforeSend: function (xhr, settings) {
        xhr.setRequestHeader("X-CSRFToken", csrfToken);
        },
        Severity: Minor
        Found in src/news/static/news/js/event/admin_event_detail.js - About 1 hr to fix

          Function getSelectionTimes has 28 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          ReservationCalendar.prototype.getSelectionTimes = function () {
          /**
          * Calculates the start and end time of the selection, so that they fit within the given rules and restrictions
          * given for reservations.
          */
          Severity: Minor
          Found in src/make_queue/static/make_queue/js/calendar.js - About 1 hr to fix

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

            def get_best_quota(cls, reservation: 'Reservation') -> Optional['Quota']:
            """
            Selects the best quota for the given reservation,
            by preferring non-diminishing quotas that do not ignore the rules.
             
             
            Severity: Minor
            Found in src/make_queue/models/reservation.py - About 1 hr to fix

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

            def delete(self, request, *args, **kwargs):
            reservation = self.get_object()
            if not can_delete_reservation(reservation, self.request.user):
            now = timezone.now()
            if reservation.start_time <= now:
            Severity: Minor
            Found in src/make_queue/api/views.py - About 1 hr to fix

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

            function togglePost($element, postURL, model, toggle) {
            $.ajaxSetup({
            beforeSend: function (xhr, settings) {
            xhr.setRequestHeader("X-CSRFToken", csrfToken);
            },
            Severity: Minor
            Found in src/news/static/news/js/event/admin_event_detail.js - About 1 hr to fix

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

            def get_users_matching_search(cls, search_string: str) -> tuple[list[User], list[User]]:
            query = Q()
            for search_fragment in search_string.split():
            user_search_field_subquery = Q()
            for field in cls.user_search_fields:
            Severity: Minor
            Found in src/news/views/event.py - About 1 hr to fix

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

            ReservationCalendar.prototype.drawReservation = function (startDate, endDate, classes, callback, linkToDisplay = null) {
            /**
            * Draws a reservation in the calendar. The `classes` parameter is the CSS classes given to each block displayed in
            * the calendar. The `callback` parameter is a function that is called with the given HTML element and date as
            * arguments each time this function creates a new HTML element for the reservation.
            Severity: Minor
            Found in src/make_queue/static/make_queue/js/calendar.js - About 1 hr to fix

            Function registerProfilePost has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

            function registerProfilePost($element) {
            $.ajaxSetup({
            beforeSend: function (xhr, settings) {
            xhr.setRequestHeader("X-CSRFToken", csrfToken);
            },
            Severity: Minor
            Found in src/checkin/static/checkin/js/profile_detail.js - About 55 mins to fix

            Function post has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

            def post(self, request):
            try:
            rating = int(request.POST.get('rating'))
            skill_id = int(request.POST.get('skill'))
            except ValueError:
            Severity: Minor
            Found in src/checkin/views.py - About 55 mins to fix

            Function create_multi_lingual_admin_formfield has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

            def create_multi_lingual_admin_formfield(db_field, request, *, enable_changing_rich_text_source=False, **kwargs):
            """
            Django admin does not render the MultiLingual fields correctly. This function creates a working widget for
            rendering the MultiLingual fields.
            """
            Severity: Minor
            Found in src/web/multilingual/admin.py - About 55 mins to fix

            Function get_context_data has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

            def get_context_data(self, **kwargs):
            context = super().get_context_data(**kwargs)
            queryset: EventQuerySet[Event] = self.get_queryset()
             
            future = queryset.future().prefetch_related(
            Severity: Minor
            Found in src/news/views/event.py - About 55 mins to fix

            Function has_any_permissions_for has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def has_any_permissions_for(user: User, model__or__app_and_model: Type[models.Model] | str):
            """
            :param user: the user to check permissions for
            :param model__or__app_and_model: either a model type, a string with the name of a uniquely named model,
            or a string of the format "{app_label}.{model_name}"
            Severity: Minor
            Found in src/util/templatetags/permission_tags.py - About 45 mins to fix

            Function can_register has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def can_register(self, user: User, *, fail_if_not_standalone):
            # Registering for an event with no time places should never be allowed - no matter the `event_type`
            if not self.timeplaces.exists():
            return False
             
             
            Severity: Minor
            Found in src/news/models.py - About 45 mins to fix

            Function formfield_for_dbfield has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def formfield_for_dbfield(self, db_field, request, **kwargs):
            multi_lingual_admin_formfield = create_multi_lingual_admin_formfield(
            db_field, request, **kwargs,
            enable_changing_rich_text_source=self.enable_changing_rich_text_source,
            )
            Severity: Minor
            Found in src/util/admin_utils.py - About 45 mins to fix

            Function get_context_data has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def get_context_data(self, **kwargs):
            """
            Creates dict with skill titles as keys and
            the highest corresponding skill level as its pair value (quick fix) to show on website.
            """
            Severity: Minor
            Found in src/checkin/views.py - About 45 mins to fix

            Function filter has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            function filter() {
            let numRegistrationsFiltered = 0;
            for (const element of state.elements) {
            if (state.onlyShowSelectedUsers) {
            element.display = element.$element.hasClass(SELECTED_ROW_CLASS);
            Severity: Minor
            Found in src/make_queue/static/make_queue/js/printer_3d_course_list.js - About 45 mins to fix

            Function getMaxDateReservation has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            function getMaxDateReservation(date) {
            /**
            * Finds the latest date at which a reservation which starts at the given date can end and still be valid.
            */
            let maxDate = new Date(date.valueOf());
            Severity: Minor
            Found in src/make_queue/static/make_queue/js/reservation_form.js - About 45 mins to fix
            Severity
            Category
            Status
            Source
            Language