opcotech/elemo

View on GitHub

Showing 170 of 170 total issues

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

func (r *CachedIssueRepository) GetRelations(ctx context.Context, issue model.ID) ([]*model.IssueRelation, error) {
    var relations []*model.IssueRelation
    var err error

    key := composeCacheKey(model.ResourceTypeIssue.String(), "GetRelations", issue.String())
Severity: Major
Found in internal/repository/redis/issue.go and 1 other location - About 2 hrs to fix
internal/repository/redis/issue.go on lines 173..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 231.

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

func (r *CachedIssueRepository) GetWatchers(ctx context.Context, issue model.ID) ([]*model.User, error) {
    var users []*model.User
    var err error

    key := composeCacheKey(model.ResourceTypeIssue.String(), "GetWatchers", issue.String())
Severity: Major
Found in internal/repository/redis/issue.go and 1 other location - About 2 hrs to fix
internal/repository/redis/issue.go on lines 244..266

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

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

func (r *CachedNotificationRepository) Get(ctx context.Context, id, recipient model.ID) (*model.Notification, error) {
    var notification *model.Notification
    var err error

    key := composeCacheKey(model.ResourceTypeNotification.String(), id.String())
Severity: Major
Found in internal/repository/redis/notification.go and 1 other location - About 2 hrs to fix
internal/repository/redis/role.go on lines 59..81

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

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

func (r *CachedRoleRepository) Get(ctx context.Context, id, belongsTo model.ID) (*model.Role, error) {
    var role *model.Role
    var err error

    key := composeCacheKey(model.ResourceTypeRole.String(), id.String())
Severity: Major
Found in internal/repository/redis/role.go and 1 other location - About 2 hrs to fix
internal/repository/redis/notification.go on lines 37..59

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

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

func (r *CachedIssueRepository) Get(ctx context.Context, id model.ID) (*model.Issue, error) {
    var issue *model.Issue
    var err error

    key := composeCacheKey(model.ResourceTypeIssue.String(), id.String())
Severity: Major
Found in internal/repository/redis/issue.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedAssignmentRepository) Get(ctx context.Context, id model.ID) (*model.Assignment, error) {
    var assignment *model.Assignment
    var err error

    key := composeCacheKey(model.ResourceTypeAssignment.String(), id.String())
Severity: Major
Found in internal/repository/redis/assignment.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedLabelRepository) Get(ctx context.Context, id model.ID) (*model.Label, error) {
    var label *model.Label
    var err error

    key := composeCacheKey(model.ResourceTypeLabel.String(), id.String())
Severity: Major
Found in internal/repository/redis/label.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedProjectRepository) Get(ctx context.Context, id model.ID) (*model.Project, error) {
    var project *model.Project
    var err error

    key := composeCacheKey(model.ResourceTypeProject.String(), id.String())
Severity: Major
Found in internal/repository/redis/project.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedUserRepository) Get(ctx context.Context, id model.ID) (*model.User, error) {
    var user *model.User
    var err error

    key := composeCacheKey(model.ResourceTypeUser.String(), id.String())
Severity: Major
Found in internal/repository/redis/user.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48

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

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

func (r *CachedNamespaceRepository) Get(ctx context.Context, id model.ID) (*model.Namespace, error) {
    var namespace *model.Namespace
    var err error

    key := composeCacheKey(model.ResourceTypeNamespace.String(), id.String())
Severity: Major
Found in internal/repository/redis/namespace.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedTodoRepository) Get(ctx context.Context, id model.ID) (*model.Todo, error) {
    var todo *model.Todo
    var err error

    key := composeCacheKey(model.ResourceTypeTodo.String(), id.String())
Severity: Major
Found in internal/repository/redis/todo.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedOrganizationRepository) Get(ctx context.Context, id model.ID) (*model.Organization, error) {
    var organization *model.Organization
    var err error

    key := composeCacheKey(model.ResourceTypeOrganization.String(), id.String())
Severity: Major
Found in internal/repository/redis/organization.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedDocumentRepository) Get(ctx context.Context, id model.ID) (*model.Document, error) {
    var document *model.Document
    var err error

    key := composeCacheKey(model.ResourceTypeDocument.String(), id.String())
Severity: Major
Found in internal/repository/redis/document.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedCommentRepository) Get(ctx context.Context, id model.ID) (*model.Comment, error) {
    var comment *model.Comment
    var err error

    key := composeCacheKey(model.ResourceTypeComment.String(), id.String())
Severity: Major
Found in internal/repository/redis/comment.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/attachment.go on lines 60..82
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *CachedAttachmentRepository) Get(ctx context.Context, id model.ID) (*model.Attachment, error) {
    var attachment *model.Attachment
    var err error

    key := composeCacheKey(model.ResourceTypeAttachment.String(), id.String())
Severity: Major
Found in internal/repository/redis/attachment.go and 10 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 74..96
internal/repository/redis/comment.go on lines 66..88
internal/repository/redis/document.go on lines 73..95
internal/repository/redis/issue.go on lines 81..103
internal/repository/redis/label.go on lines 55..77
internal/repository/redis/namespace.go on lines 54..76
internal/repository/redis/organization.go on lines 37..59
internal/repository/redis/project.go on lines 58..80
internal/repository/redis/todo.go on lines 26..48
internal/repository/redis/user.go on lines 63..85

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

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

func (r *AttachmentRepository) Update(ctx context.Context, id model.ID, name string) (*model.Attachment, error) {
    ctx, span := r.tracer.Start(ctx, "repository.neo4j.AttachmentRepository/Update")
    defer span.End()

    cypher := `
Severity: Major
Found in internal/repository/neo4j/attachment.go and 1 other location - About 2 hrs to fix
internal/repository/neo4j/comment.go on lines 140..162

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

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

func (r *CachedLabelRepository) GetAll(ctx context.Context, offset, limit int) ([]*model.Label, error) {
    var labels []*model.Label
    var err error

    key := composeCacheKey(model.ResourceTypeLabel.String(), "GetAll", offset, limit)
Severity: Major
Found in internal/repository/redis/label.go and 2 other locations - About 2 hrs to fix
internal/repository/redis/organization.go on lines 61..83
internal/repository/redis/user.go on lines 111..133

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

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

func (r *CachedUserRepository) GetAll(ctx context.Context, offset, limit int) ([]*model.User, error) {
    var users []*model.User
    var err error

    key := composeCacheKey(model.ResourceTypeUser.String(), "GetAll", offset, limit)
Severity: Major
Found in internal/repository/redis/user.go and 2 other locations - About 2 hrs to fix
internal/repository/redis/label.go on lines 79..101
internal/repository/redis/organization.go on lines 61..83

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

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

func (r *CommentRepository) Update(ctx context.Context, id model.ID, content string) (*model.Comment, error) {
    ctx, span := r.tracer.Start(ctx, "repository.neo4j.CommentRepository/Update")
    defer span.End()

    cypher := `
Severity: Major
Found in internal/repository/neo4j/comment.go and 1 other location - About 2 hrs to fix
internal/repository/neo4j/attachment.go on lines 140..162

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

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

func (r *CachedOrganizationRepository) GetAll(ctx context.Context, offset, limit int) ([]*model.Organization, error) {
    var organizations []*model.Organization
    var err error

    key := composeCacheKey(model.ResourceTypeOrganization.String(), "GetAll", offset, limit)
Severity: Major
Found in internal/repository/redis/organization.go and 2 other locations - About 2 hrs to fix
internal/repository/redis/label.go on lines 79..101
internal/repository/redis/user.go on lines 111..133

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

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