wechaty/go-wechaty

View on GitHub
wechaty/plugin.go

Summary

Maintainability
C
1 day
Test Coverage
F
27%

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

func (p *Plugin) OnError(f EventError) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameError,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnReady(f EventReady) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameReady,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnRoomInvite(f EventRoomInvite) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameRoomInvite,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnScan(f EventScan) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameScan,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnLogin(f EventLogin) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameLogin,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnHeartbeat(f EventHeartbeat) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameHeartbeat,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnRoomTopic(f EventRoomTopic) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameRoomTopic,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnRoomJoin(f EventRoomJoin) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameRoomJoin,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnFriendship(f EventFriendship) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameFriendship,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnMessage(f EventMessage) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameMessage,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnDong(f EventDong) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameDong,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnLogout(f EventLogout) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameLogout,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnStart(f EventStart) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameStart,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnRoomLeave(f EventRoomLeave) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameRoomLeave,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196
wechaty/plugin.go on lines 199..205

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

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

func (p *Plugin) OnStop(f EventStop) *Plugin {
    p.events = append(p.events, PluginEvent{
        name: schemas.PuppetEventNameStop,
        f:    f,
    })
Severity: Major
Found in wechaty/plugin.go and 14 other locations - About 35 mins to fix
wechaty/plugin.go on lines 73..79
wechaty/plugin.go on lines 82..88
wechaty/plugin.go on lines 91..97
wechaty/plugin.go on lines 100..106
wechaty/plugin.go on lines 109..115
wechaty/plugin.go on lines 118..124
wechaty/plugin.go on lines 127..133
wechaty/plugin.go on lines 136..142
wechaty/plugin.go on lines 145..151
wechaty/plugin.go on lines 154..160
wechaty/plugin.go on lines 163..169
wechaty/plugin.go on lines 172..178
wechaty/plugin.go on lines 181..187
wechaty/plugin.go on lines 190..196

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

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

            for _, v := range data {
                values = append(values, reflect.ValueOf(v))
            }
Severity: Minor
Found in wechaty/plugin.go and 1 other location - About 35 mins to fix
wechaty/wechaty.go on lines 101..103

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

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