require_relative 'base_decorator' require_relative 'embedded_tag_decorator' module PactBroker module Api module Decorators class VersionDecorator < BaseDecorator property :number collection :tags, embedded: true, :extend => PactBroker::Api::Decorators::EmbeddedTagDecorator link :self do | options | { title: 'Version', name: represented.number, href: version_url(options.fetch(:base_url), represented) } end link :'pb:pacticipant' do | options | { title: 'Pacticipant', name: represented.pacticipant.name, href: pacticipant_url(options.fetch(:base_url), represented.pacticipant) } end link :'pb:tag' do | options | { href: pacticipant_url(options.fetch(:base_url), represented.pacticipant) + '/tags/{tag}', title: "Get, create or delete a tag for this pacticipant version", templated: true } end link :'pb:latest-verification-results-where-pacticipant-is-consumer' do | options | { title: "Latest verification results for consumer version", href: latest_verifications_for_consumer_version_url(represented, options.fetch(:base_url)) } end links :'pb:pact-versions' do | context | sorted_pacts.collect do | pact | { title: "Pact", name: pact.name, href: pact_url(context[:base_url], pact), } end end curies do | options | [{ name: :pb, href: options.fetch(:base_url) + '/doc/{rel}?context=version', templated: true }] end private def sorted_pacts represented.pact_publications.sort{ |a, b| a.provider_name.downcase <=> b.provider_name.downcase } end end end end end