-
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(dashboard api): add plain text content type for easy debugging
- Loading branch information
Showing
2 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
lib/pact_broker/api/decorators/dashboard_text_decorator.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
require 'ostruct' | ||
require 'pact_broker/api/pact_broker_urls' | ||
|
||
module PactBroker | ||
module Api | ||
module Decorators | ||
class DashboardTextDecorator | ||
include PactBroker::Api::PactBrokerUrls | ||
|
||
Line = Struct.new(:consumer_name, :c_version, :c_tags , :provider_name, :p_version, :p_tags, :success) | ||
|
||
def initialize(index_items) | ||
@index_items = index_items | ||
end | ||
|
||
def to_json(options) | ||
to_hash(options).to_json | ||
end | ||
|
||
def to_text(options) | ||
data = items(index_items, options[:user_options][:base_url]) | ||
printer = TablePrint::Printer.new(data) | ||
printer.table_print | ||
end | ||
|
||
private | ||
|
||
attr_reader :index_items | ||
|
||
def items(index_items, base_url) | ||
index_items.collect do | index_item | | ||
index_item_object(index_item) | ||
end | ||
end | ||
|
||
def index_item_object(index_item) | ||
Line.new( | ||
index_item.consumer_name, | ||
index_item.consumer_version_number, | ||
index_item.tag_names.join(", "), | ||
index_item.provider_name, | ||
index_item.provider_version_number, | ||
index_item.latest_verification_latest_tags.collect(&:name).join(", "), | ||
index_item.verification_status.to_s | ||
) | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters