opcotech/elemo

View on GitHub
internal/repository/redis/assignment.go

Summary

Maintainability
C
7 hrs
Test Coverage

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

func (r *CachedAssignmentRepository) GetByUser(ctx context.Context, userID model.ID, offset, limit int) ([]*model.Assignment, error) {
    var assignments []*model.Assignment
    var err error

    key := composeCacheKey(model.ResourceTypeAssignment.String(), "GetByUser", userID.String(), offset, limit)
Severity: Major
Found in internal/repository/redis/assignment.go and 9 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 122..144
internal/repository/redis/attachment.go on lines 84..106
internal/repository/redis/comment.go on lines 90..112
internal/repository/redis/document.go on lines 97..119
internal/repository/redis/document.go on lines 121..143
internal/repository/redis/issue.go on lines 105..127
internal/repository/redis/issue.go on lines 129..151
internal/repository/redis/project.go on lines 106..128
internal/repository/redis/role.go on lines 83..105

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

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

func (r *CachedAssignmentRepository) GetByResource(ctx context.Context, resourceID model.ID, offset, limit int) ([]*model.Assignment, error) {
    var assignments []*model.Assignment
    var err error

    key := composeCacheKey(model.ResourceTypeAssignment.String(), "GetByResource", resourceID.String(), offset, limit)
Severity: Major
Found in internal/repository/redis/assignment.go and 9 other locations - About 2 hrs to fix
internal/repository/redis/assignment.go on lines 98..120
internal/repository/redis/attachment.go on lines 84..106
internal/repository/redis/comment.go on lines 90..112
internal/repository/redis/document.go on lines 97..119
internal/repository/redis/document.go on lines 121..143
internal/repository/redis/issue.go on lines 105..127
internal/repository/redis/issue.go on lines 129..151
internal/repository/redis/project.go on lines 106..128
internal/repository/redis/role.go on lines 83..105

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

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

There are no issues that match your filters.

Category
Status