cre-ne-jp/log-archiver

View on GitHub

Showing 44 of 45 total issues

Method has too many lines. [62/30]
Open

def show
target_channels, @other_channels = Channel.
order_for_list.
partition { |channel| channel.identifier == params[:id] }
@channel = target_channels.first

Method has too many lines. [54/30]
Open

def parse
# 現在設定されている属性
current_attr = IrcTextAttribute.new
# 次の文字から設定される属性
next_attr = IrcTextAttribute.new
Severity: Minor
Found in lib/log_archiver/mirc_to_html.rb by rubocop

Method has too many lines. [44/30]
Open

def result
return nil unless valid?
 
channels = @channels.empty? ?
[] : Channel.where(identifier: @channels.split).to_a
Severity: Minor
Found in app/models/message_period.rb by rubocop

Method has too many lines. [42/30]
Open

def parse_options(argv)
default_options = {
config_id: 'ircbot',
log_level: :warn,
mode: 'development'
Severity: Minor
Found in lib/ircs/irc_bot.rb by rubocop

Cyclomatic complexity for parse is too high. [15/6]
Open

def parse
# 現在設定されている属性
current_attr = IrcTextAttribute.new
# 次の文字から設定される属性
next_attr = IrcTextAttribute.new
Severity: Minor
Found in lib/log_archiver/mirc_to_html.rb by rubocop

Method has too many lines. [37/30]
Open

def index
target_channels, @other_channels = Channel.
order_for_list.
partition { |channel| channel.identifier == params[:id] }
@channel = target_channels.first

Class IrcTextAttribute has 22 methods (exceeds 20 allowed). Consider refactoring.
Open

class IrcTextAttribute
# @return [Boolean] 太字にするか
attr_reader :bold
# @return [Boolean] 下線を引くか
attr_reader :underline
Severity: Minor
Found in lib/log_archiver/irc_text_attribute.rb - About 2 hrs to fix

    Method span_tag has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

    def span_tag(text)
    classes = [
    @bold ? 'mirc-bold' : nil,
    @italic ? 'mirc-italic' : nil,
    @underline ? 'mirc-underline' : nil,
    Severity: Minor
    Found in lib/log_archiver/irc_text_attribute.rb - About 2 hrs to fix

    Cyclomatic complexity for == is too high. [10/6]
    Open

    def ==(other)
    other.bold == @bold &&
    other.underline == @underline &&
    other.italic == @italic &&
    other.strikethrough == @strikethrough &&

    Cyclomatic complexity for span_tag is too high. [10/6]
    Open

    def span_tag(text)
    classes = [
    @bold ? 'mirc-bold' : nil,
    @italic ? 'mirc-italic' : nil,
    @underline ? 'mirc-underline' : nil,

    Cyclomatic complexity for fa_icon is too high. [9/6]
    Open

    def fa_icon(names = 'flag', original_options = {})
    options = original_options.deep_dup
    names = names.is_a?(Array) ? names : names.to_s.split(/\s+/)
    style =
    case(options.delete(:style))
    Severity: Minor
    Found in app/helpers/fontawesome_helper.rb by rubocop

    Cyclomatic complexity for show is too high. [7/6]
    Open

    def show
    target_channels, @other_channels = Channel.
    order_for_list.
    partition { |channel| channel.identifier == params[:id] }
    @channel = target_channels.first

    Method parse has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse
    # 現在設定されている属性
    current_attr = IrcTextAttribute.new
    # 次の文字から設定される属性
    next_attr = IrcTextAttribute.new
    Severity: Minor
    Found in lib/log_archiver/mirc_to_html.rb - About 1 hr to fix

    Method run has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

    def run(privmsg)
    display_title = privmsg.message.sub(@command_prefix, '').strip
    title = Keyword.normalize(display_title)
     
    # 処理の結果
    Severity: Minor
    Found in lib/log_archiver/extract_keyword.rb - About 1 hr to fix

    Method show has 62 lines of code (exceeds 50 allowed). Consider refactoring.
    Open

    def show
    target_channels, @other_channels = Channel.
    order_for_list.
    partition { |channel| channel.identifier == params[:id] }
    @channel = target_channels.first
    Severity: Major
    Found in app/controllers/channels/days_controller.rb - About 1 hr to fix

      Method record_message has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

      def record_message(message)
      return nil unless message.channel
       
      synchronize(RECORD_MESSAGE) do
      ActiveRecord::Base.connection_pool.with_connection do
      Severity: Minor
      Found in lib/ircs/plugins/base.rb - About 1 hr to fix

      Method parse has 54 lines of code (exceeds 50 allowed). Consider refactoring.
      Open

      def parse
      # 現在設定されている属性
      current_attr = IrcTextAttribute.new
      # 次の文字から設定される属性
      next_attr = IrcTextAttribute.new
      Severity: Major
      Found in lib/log_archiver/mirc_to_html.rb - About 1 hr to fix

        Method show has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

        def show
        target_channels, @other_channels = Channel.
        order_for_list.
        partition { |channel| channel.identifier == params[:id] }
        @channel = target_channels.first
        Severity: Minor
        Found in app/controllers/channels/days_controller.rb - About 1 hr to fix

        Function connect has 51 lines of code (exceeds 50 allowed). Consider refactoring.
        Open

        connect() {
        if (this.dateListItemTargets.length <= 0) {
        // グラフが存在しなければ何もしない
        return;
        }
        Severity: Major
        Found in app/javascript/controllers/speeches_chart_controller.js - About 1 hr to fix

          Method for_channels_index has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          def self.for_channels_index
          last_speech_timestamp =
          ->(channel) { channel.last_speech&.timestamp || DateTime.new }
           
          all.
          Severity: Minor
          Found in app/models/channel.rb - About 55 mins to fix
          Severity
          Category
          Status
          Source
          Language