Module: Mihari::Commands::Tag

Included in:
Mihari::CLI::Tag
Defined in:
lib/mihari/commands/tag.rb

Overview

Tag sub-commands

Class Method Summary collapse

Class Method Details

.included(thor) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/mihari/commands/tag.rb', line 10

def included(thor)
  thor.class_eval do
    include Concerns::DatabaseConnectable

    no_commands do
      #
      # @param [String] q
      # @param [Integer] page
      # @param [Integer] limit
      #
      # @return [Mihari::Services::ResultValue]
      #
      def _search(q, page: 1, limit: 10)
        filter = Structs::Filters::Search.new(q: q, page: page, limit: limit)
        Services::TagSearcher.result(filter).value!
      end
    end

    desc "list QUERY", "List/search tags"
    around :with_db_connection
    method_option :page, type: :numeric, default: 1
    method_option :limit, type: :numeric, default: 10
    #
    # @param [String] q
    #
    def list(q = "")
      value = _search(q, page: options["page"], limit: options["limit"])
      data = Entities::TagsWithPagination.represent(
        results: value.results,
        total: value.total,
        current_page: value.filter[:page].to_i,
        page_size: value.filter[:limit].to_i
      )
      puts JSON.pretty_generate(data.as_json)
    end

    desc "list-transform QUERY", "List/search tags with transformation"
    around :with_db_connection
    method_option :template, type: :string, required: true, aliases: "-t",
      desc: "Jbuilder template stringor a path to a template"
    method_option :page, type: :numeric, default: 1
    method_option :limit, type: :numeric, default: 10
    #
    # @param [String] q
    #
    def list_transform(q = "")
      value = _search(q, page: options["page"], limit: options["limit"])
      puts Services::JbuilderRenderer.call(
        options["template"],
        {
          results: value.results,
          total: value.total,
          current_page: value.filter[:page].to_i,
          page_size: value.filter[:limit].to_i
        }
      )
    end

    desc "delete ID", "Delete a tag"
    around :with_db_connection
    #
    # @param [Integer] id
    #
    def delete(id)
      Services::TagDestroyer.result(id).value!
    end
  end
end