Katello/katello

View on GitHub

Showing 2,737 of 2,737 total issues

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

    <Modal
      ouiaId="add-edit-container-tag-rule-modal"
      title={isEditing ? __('Edit filter rule') : __('Add filter rule')}
      variant={ModalVariant.small}
      isOpen
webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js on lines 62..113

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

    const {
      manifestHistory,
      organization,
      disableManifestActions,
      disabledReason,
webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js on lines 13..17

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

        <CVFilterDetailType
          cvId={cvId}
          filterId={filterId}
          inclusion={inclusion}
          type={type}
webpack/components/Content/__tests__/GenericContentPage.test.js on lines 21..30

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

  const {
    cvId, versionNameToRemove, versionEnvironments, selectedEnvSet,
    selectedEnvForAK, selectedCVNameForAK, selectedCVNameForHosts,
    selectedEnvForHost, affectedActivationKeys, affectedHosts, deleteFlow, removeDeletionFlow,
  } = useContext(DeleteContext);
webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js on lines 83..96

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

    <Modal
      ouiaId="add-edit-deb-filter-rule-modal"
      title={selectedFilterRuleData ? __('Edit package filter rule') : __('Create package filter rule')}
      variant={ModalVariant.small}
      isOpen
webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js on lines 53..92

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

  try {
    const result = await api.put(url, repoData);
    return dispatch(apiSuccess(DISABLE_REPOSITORY_SUCCESS, result));
  } catch (error) {
    return dispatch(apiError(DISABLE_REPOSITORY_FAILURE, error, { repository }));
Severity: Major
Found in webpack/redux/actions/RedHatRepositories/enabled.js and 1 other location - About 1 hr to fix
webpack/redux/actions/RedHatRepositories/repositorySetRepositories.js on lines 49..54

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

        :package_install => {
          :english_name => N_("Package Install"),
          :type => :package,
          # in the event_messages structure, the first element is used for status when the action/event is scheduled
          # (e.g. System->Packages pane, the second and third are used on the Event History for singular/plural
Severity: Major
Found in app/lib/katello/util/task_status.rb and 6 other locations - About 1 hr to fix
app/lib/katello/util/task_status.rb on lines 25..36
app/lib/katello/util/task_status.rb on lines 38..49
app/lib/katello/util/task_status.rb on lines 52..63
app/lib/katello/util/task_status.rb on lines 65..77
app/lib/katello/util/task_status.rb on lines 79..91
app/lib/katello/util/task_status.rb on lines 93..104

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

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

        :package_remove => {
          :english_name => N_("Package Remove"),
          :type => :package,
          :event_messages => {
            :running => [N_('Removing Package...'), N_('removing package...'), N_('removing packages...')],
Severity: Major
Found in app/lib/katello/util/task_status.rb and 6 other locations - About 1 hr to fix
app/lib/katello/util/task_status.rb on lines 9..22
app/lib/katello/util/task_status.rb on lines 25..36
app/lib/katello/util/task_status.rb on lines 52..63
app/lib/katello/util/task_status.rb on lines 65..77
app/lib/katello/util/task_status.rb on lines 79..91
app/lib/katello/util/task_status.rb on lines 93..104

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

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

        :package_update => {
          :english_name => N_("Package Update"),
          :type => :package,
          :event_messages => {
            :running => [N_('Updating Package...'), N_('updating package...'), N_('updating packages...')],
Severity: Major
Found in app/lib/katello/util/task_status.rb and 6 other locations - About 1 hr to fix
app/lib/katello/util/task_status.rb on lines 9..22
app/lib/katello/util/task_status.rb on lines 38..49
app/lib/katello/util/task_status.rb on lines 52..63
app/lib/katello/util/task_status.rb on lines 65..77
app/lib/katello/util/task_status.rb on lines 79..91
app/lib/katello/util/task_status.rb on lines 93..104

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

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

        :package_group_install => {
          :english_name => N_("Package Group Install"),
          :type => :package_group,
          :event_messages => {
            :running => [N_('Installing Package Group...'), N_('installing package group...'), N_('installing package groups...')],
Severity: Major
Found in app/lib/katello/util/task_status.rb and 6 other locations - About 1 hr to fix
app/lib/katello/util/task_status.rb on lines 9..22
app/lib/katello/util/task_status.rb on lines 25..36
app/lib/katello/util/task_status.rb on lines 38..49
app/lib/katello/util/task_status.rb on lines 65..77
app/lib/katello/util/task_status.rb on lines 79..91
app/lib/katello/util/task_status.rb on lines 93..104

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

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

        :package_group_update => {
          :english_name => N_("Package Group Update"),
          :type => :package_group,
          :event_messages => {
            :running => [N_('Updating package group...'), N_('updating package group...'), N_('updating package groups...')],
Severity: Major
Found in app/lib/katello/util/task_status.rb and 6 other locations - About 1 hr to fix
app/lib/katello/util/task_status.rb on lines 9..22
app/lib/katello/util/task_status.rb on lines 25..36
app/lib/katello/util/task_status.rb on lines 38..49
app/lib/katello/util/task_status.rb on lines 52..63
app/lib/katello/util/task_status.rb on lines 79..91
app/lib/katello/util/task_status.rb on lines 93..104

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

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

        :errata_install => {
          :english_name => N_("Errata Install"),
          :type => :errata,
          :event_messages => {
            :running => [N_('Installing Erratum...'), N_('installing erratum...'), N_('installing errata...')],
Severity: Major
Found in app/lib/katello/util/task_status.rb and 6 other locations - About 1 hr to fix
app/lib/katello/util/task_status.rb on lines 9..22
app/lib/katello/util/task_status.rb on lines 25..36
app/lib/katello/util/task_status.rb on lines 38..49
app/lib/katello/util/task_status.rb on lines 52..63
app/lib/katello/util/task_status.rb on lines 65..77
app/lib/katello/util/task_status.rb on lines 79..91

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

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

        :package_group_remove => {
          :english_name => N_("Package Group Remove"),
          :type => :package_group,
          :event_messages => {
            :running => [N_('Removing Package Group...'), N_('removing package group...'), N_('removing package groups...')],
Severity: Major
Found in app/lib/katello/util/task_status.rb and 6 other locations - About 1 hr to fix
app/lib/katello/util/task_status.rb on lines 9..22
app/lib/katello/util/task_status.rb on lines 25..36
app/lib/katello/util/task_status.rb on lines 38..49
app/lib/katello/util/task_status.rb on lines 52..63
app/lib/katello/util/task_status.rb on lines 65..77
app/lib/katello/util/task_status.rb on lines 93..104

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

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

    wrapper: (hostDetails) => {
      const errataCounts = hostDetails?.content_facet_attributes?.errata_counts;
      const registered = !!hostDetails?.subscription_facet_attributes?.uuid;
      const { security, bugfix, enhancement } = errataCounts ?? {};
      const upgradableRpmCount = hostDetails?.content_facet_attributes?.upgradable_package_count;
Severity: Minor
Found in webpack/ForemanColumnExtensions/index.js - About 1 hr to fix

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

    export const getSetsComponent = (repoSetsState, onPaginationChange) => {
      const {
        results,
        searchIsActive,
        pagination,
    Severity: Minor
    Found in webpack/scenes/RedHatRepositories/helpers.js - About 1 hr to fix

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

      const ModuleStreamsPage = (props) => {
        const { searchParam } = useUrlParams();
        const [searchQuery, setSearchQuery] = useState(searchParam || '');
        const { getModuleStreams } = props;
      
      
      Severity: Minor
      Found in webpack/scenes/ModuleStreams/ModuleStreamsPage.js - About 1 hr to fix

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

              def upload
                if @host.nil?
                  Rails.logger.warn("Host was not specified; skipping")
                  return false
                elsif @host.content_facet.nil? || @host.content_facet.uuid.nil?
        Severity: Minor
        Found in app/services/katello/host/profiles_uploader.rb - About 1 hr to fix

          Method multi_copy_units has 34 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  def multi_copy_units(repo_id_map, dependency_solving)
                    tasks = []
          
                    if repo_id_map.values.pluck(:content_unit_hrefs).flatten.any?
                      data = PulpRpmClient::Copy.new
          Severity: Minor
          Found in app/services/katello/pulp3/repository/yum.rb - About 1 hr to fix

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

              {
                name: 'Repositories',
                autoCompleteUrl: '/repositories/auto_complete_search',
                dataUrl: api.getApiUrl('/repositories/compare'),
                data: cvCompareRepositoriesData,
            webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js on lines 91..99
            webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js on lines 193..201

            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

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

              {
                name: 'Repositories',
                autoCompleteUrl: '/repositories/auto_complete_search',
                dataUrl: api.getApiUrl('/repositories/compare'),
                data: cvCompareRepositoriesData,
            webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js on lines 91..99
            webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js on lines 272..280

            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

            Severity
            Category
            Status
            Source
            Language