Chocobozzz/PeerTube

View on GitHub
server/core/models/video/formatter/video-api-format.ts

Summary

Maintainability
C
1 day
Test Coverage

File video-api-format.ts has 271 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { getResolutionLabel } from '@peertube/peertube-core-utils'
import {
  Video,
  VideoAdditionalAttributes,
  VideoCommentPolicy,
Severity: Minor
Found in server/core/models/video/formatter/video-api-format.ts - About 2 hrs to fix

    Function videoModelToFormattedJSON has 56 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function videoModelToFormattedJSON (video: MVideoFormattable, options: VideoFormattingJSONOptions = {}): Video {
      const span = tracer.startSpan('peertube.VideoModel.toFormattedJSON')
    
      const userHistory = isArray(video.UserVideoHistories)
        ? video.UserVideoHistories[0]
    Severity: Major
    Found in server/core/models/video/formatter/video-api-format.ts - About 2 hrs to fix

      Function buildAdditionalAttributes has 40 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function buildAdditionalAttributes (video: MVideoFormattable, options: VideoFormattingJSONOptions) {
        const add = options.additionalAttributes
      
        const result: Partial<VideoAdditionalAttributes> = {}
      
      
      Severity: Minor
      Found in server/core/models/video/formatter/video-api-format.ts - About 1 hr to fix

        Function videoFilesModelToFormattedJSON has 38 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export function videoFilesModelToFormattedJSON (
          video: MVideoFormattable,
          videoFiles: MVideoFileRedundanciesOpt[],
          options: {
            includeMagnet?: boolean // default true
        Severity: Minor
        Found in server/core/models/video/formatter/video-api-format.ts - About 1 hr to fix

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

          function buildAdditionalAttributes (video: MVideoFormattable, options: VideoFormattingJSONOptions) {
            const add = options.additionalAttributes
          
            const result: Partial<VideoAdditionalAttributes> = {}
          
          
          Severity: Minor
          Found in server/core/models/video/formatter/video-api-format.ts - 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

          Function videoModelToFormattedDetailsJSON has 35 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          export function videoModelToFormattedDetailsJSON (video: MVideoFormattableDetails): VideoDetails {
            const span = tracer.startSpan('peertube.VideoModel.toFormattedDetailsJSON')
          
            const videoJSON = video.toFormattedJSON({
              completeDescription: true,
          Severity: Minor
          Found in server/core/models/video/formatter/video-api-format.ts - About 1 hr to fix

            There are no issues that match your filters.

            Category
            Status