Sha256: 477946b5293086a37db12360be9d61908672ea7eb1f2a43f5d2c68aee67e8cd8

Contents?: true

Size: 1.87 KB

Versions: 14

Compression:

Stored size: 1.87 KB

Contents

# frozen_string_literal: true

# Copyright (c) 2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

require 'typhoeus'
require 'iri'
require_relative '../../judges'
require_relative '../../judges/impex'
require_relative '../../judges/baza'

# Push.
# Author:: Yegor Bugayenko (yegor256@gmail.com)
# Copyright:: Copyright (c) 2024 Yegor Bugayenko
# License:: MIT
class Judges::Push
  def initialize(loog)
    @loog = loog
  end

  def run(opts, args)
    raise 'Exactly two arguments required' unless args.size == 2
    name = args[0]
    fb = Judges::Impex.new(@loog, args[1]).import
    baza = Judges::Baza.new(
      opts['host'], opts['port'].to_i, opts['token'],
      ssl: opts['ssl'],
      timeout: (opts['timeout'] || 5).to_i,
      loog: @loog
    )
    elapsed(@loog) do
      id = baza.push(name, fb.export)
      throw :"Pushed #{fb.size} facts, job ID is #{id}"
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
judges-0.11.0 lib/judges/commands/push.rb
judges-0.10.0 lib/judges/commands/push.rb
judges-0.9.0 lib/judges/commands/push.rb
judges-0.8.0 lib/judges/commands/push.rb
judges-0.7.0 lib/judges/commands/push.rb
judges-0.6.0 lib/judges/commands/push.rb
judges-0.5.0 lib/judges/commands/push.rb
judges-0.4.0 lib/judges/commands/push.rb
judges-0.3.0 lib/judges/commands/push.rb
judges-0.2.0 lib/judges/commands/push.rb
judges-0.1.0 lib/judges/commands/push.rb
judges-0.0.37 lib/judges/commands/push.rb
judges-0.0.36 lib/judges/commands/push.rb
judges-0.0.35 lib/judges/commands/push.rb