Chocobozzz/PeerTube

View on GitHub
client/src/app/shared/shared-main/video/video.service.ts

Summary

Maintainability
F
4 days
Test Coverage

File video.service.ts has 487 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { HttpClient, HttpParams, HttpRequest } from '@angular/common/http'
import { Injectable } from '@angular/core'
import { AuthService, ComponentPaginationLight, ConfirmService, RestExtractor, RestService, ServerService, UserService } from '@app/core'
import { objectToFormData } from '@app/helpers'
import { arrayify } from '@peertube/peertube-core-utils'
Severity: Minor
Found in client/src/app/shared/shared-main/video/video.service.ts - About 7 hrs to fix

    VideoService has 35 functions (exceeds 20 allowed). Consider refactoring.
    Open

    @Injectable()
    export class VideoService {
      static BASE_VIDEO_DOWNLOAD_URL = environment.originServerUrl + '/download/videos/generate'
      static BASE_VIDEO_URL = environment.apiUrl + '/api/v1/videos'
      static BASE_FEEDS_URL = environment.apiUrl + '/feeds/videos.'
    Severity: Minor
    Found in client/src/app/shared/shared-main/video/video.service.ts - About 4 hrs to fix

      Function updateVideo has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        updateVideo (video: VideoEdit) {
          const language = video.language || null
          const licence = video.licence || null
          const category = video.category || null
          const description = video.description || null
      Severity: Minor
      Found in client/src/app/shared/shared-main/video/video.service.ts - About 1 hr to fix

        Function runTranscoding has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          runTranscoding (options: {
            videos: Video[]
            type: 'hls' | 'web-video'
            forceTranscoding?: boolean
          }): Observable<any> {
        Severity: Minor
        Found in client/src/app/shared/shared-main/video/video.service.ts - About 1 hr to fix

          Function getMyVideos has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            getMyVideos (options: {
              videoPagination: ComponentPaginationLight
              sort: VideoSortField
              userChannels?: VideoChannelServerModel[]
              search?: string
          Severity: Minor
          Found in client/src/app/shared/shared-main/video/video.service.ts - About 1 hr to fix

            Function buildCommonVideosParams has 26 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              buildCommonVideosParams (options: CommonVideoParams & { params: HttpParams }) {
                const {
                  params,
                  videoPagination,
                  sort,
            Severity: Minor
            Found in client/src/app/shared/shared-main/video/video.service.ts - About 1 hr to fix

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

                buildCommonVideosParams (options: CommonVideoParams & { params: HttpParams }) {
                  const {
                    params,
                    videoPagination,
                    sort,
              Severity: Minor
              Found in client/src/app/shared/shared-main/video/video.service.ts - About 55 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

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

                extractVideos (result: ResultList<VideoServerModel>) {
                  return this.serverService.getServerLocale()
                             .pipe(
                               map(translations => {
                                 const videosJson = result.data
              Severity: Major
              Found in client/src/app/shared/shared-main/video/video.service.ts and 2 other locations - About 4 hrs to fix
              client/src/app/shared/shared-video-playlist/video-playlist.service.ts on lines 323..338
              client/src/app/shared/shared-video-playlist/video-playlist.service.ts on lines 345..360

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

              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

                  return this.authHttp
                             .get<ResultList<Video>>(AccountService.BASE_ACCOUNT_URL + account.nameWithHost + '/videos', { params })
                             .pipe(
                               switchMap(res => this.extractVideos(res)),
                               catchError(err => this.restExtractor.handleError(err))
              Severity: Major
              Found in client/src/app/shared/shared-main/video/video.service.ts and 1 other location - About 3 hrs to fix
              client/src/app/shared/shared-main/video/video.service.ts on lines 206..211

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

              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

                  return this.authHttp
                             .get<ResultList<Video>>(VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannel.nameWithHost + '/videos', { params })
                             .pipe(
                               switchMap(res => this.extractVideos(res)),
                               catchError(err => this.restExtractor.handleError(err))
              Severity: Major
              Found in client/src/app/shared/shared-main/video/video.service.ts and 1 other location - About 3 hrs to fix
              client/src/app/shared/shared-main/video/video.service.ts on lines 190..195

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

              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

                  return this.authHttp
                             .get<ResultList<Video>>(UserService.BASE_USERS_URL + 'me/videos', { params })
                             .pipe(
                               switchMap(res => this.extractVideos(res)),
                               catchError(err => this.restExtractor.handleError(err))
              Severity: Major
              Found in client/src/app/shared/shared-main/video/video.service.ts and 1 other location - About 2 hrs to fix
              client/src/app/shared/shared-main/video/video-import.service.ts on lines 63..68

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

              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

                  const {
                    params,
                    videoPagination,
                    sort,
                    isLocal,
              Severity: Major
              Found in client/src/app/shared/shared-main/video/video.service.ts and 3 other locations - About 1 hr to fix
              packages/ffmpeg/src/ffmpeg-live.ts on lines 143..143
              packages/server-commands/src/shared/abstract-command.ts on lines 184..184
              server/core/lib/transcoding/hls-transcoding.ts on lines 161..173

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

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

                constructor (
                  private auth: AuthService,
                  private authHttp: HttpClient,
                  private restExtractor: RestExtractor,
                  private restService: RestService,
              Severity: Major
              Found in client/src/app/shared/shared-main/video/video.service.ts and 9 other locations - About 1 hr to fix
              client/src/app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts on lines 49..57
              client/src/app/+admin/plugins/plugin-search/plugin-search.component.ts on lines 58..66
              client/src/app/+videos/+video-edit/video-add.component.ts on lines 73..80
              client/src/app/+videos/+video-edit/video-update.resolver.ts on lines 17..25
              client/src/app/+videos/+video-watch/shared/comment/video-comments.component.ts on lines 75..82
              client/src/app/+videos/video-list/videos-list-common-page.component.ts on lines 49..57
              client/src/app/menu/quick-settings-modal.component.ts on lines 34..42
              client/src/app/shared/shared-custom-markup/peertube-custom-tags/channel-miniature-markup.component.ts on lines 40..47
              client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts on lines 72..79

              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

                                const message = $localize`PeerTube considers video "${video.name}" is already being transcoded.` +
                                  // eslint-disable-next-line max-len
                                  $localize` If you think PeerTube is wrong (video in broken state after a crash etc.), you can force transcoding on this video.` +
                                  ` Do you still want to run transcoding?`
              Severity: Minor
              Found in client/src/app/shared/shared-main/video/video.service.ts and 1 other location - About 40 mins to fix
              client/src/app/shared/shared-main/video-caption/video-caption.service.ts on lines 118..121

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

              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