Class: PactBroker::Api::Resources::Pacticipant

Inherits:
BaseResource
  • Object
show all
Defined in:
lib/pact_broker/api/resources/pacticipant.rb

Constant Summary

Constants included from Pacts::Metadata

Pacts::Metadata::MAPPINGS

Constants included from Services

Services::FACTORIES

Instance Attribute Summary

Attributes inherited from BaseResource

#user

Instance Method Summary collapse

Methods inherited from BaseResource

#any_request_body?, #api_contract_class, #application_context, #base_url, #charsets_provided, #consumer, #consumer_name, #consumer_specified?, #consumer_version_number, #contract_validation_errors?, #database_connector, #decorator_class, #decorator_context, #decorator_options, #encode, #find_pacticipant, #finish_request, #forbidden?, #handle_exception, #identifier_from_path, #initialize, #integration, #invalid_json?, #is_authorized?, #malformed_request_for_json_with_schema?, #options, #pact, #pact_params, #pacticipant, #pacticipant_name, #pacticipant_specified?, #pacticipant_version_number, #params, #params_with_string_keys, #provider, #provider_name, #provider_specified?, #request_body, #resource_url, #set_json_error_message, #set_json_validation_error_messages, #ui_base_url, #validation_errors?, #validation_errors_for_schema?

Methods included from Logging

included, #log_error, #log_with_tag

Methods included from Authorization

#action, #create_methods, #delete_methods, #read_methods, #update_methods

Methods included from Authentication

#authenticated?

Methods included from PactBrokerUrls

#append_query_if_present, #badge_url_for_latest_pact, #branch_version_url, #consumer_webhooks_url, #currently_deployed_versions_for_environment_url, #currently_supported_versions_for_environment_url, #dashboard_url_for_integration, #decode_pact_metadata, #deployed_version_url, #deployed_versions_for_version_and_environment_url, #encode_metadata, #environment_url, #environments_url, #group_url, #hal_browser_url, #integration_url, #label_url, #labels_url, #latest_pact_url, #latest_pacts_url, #latest_tagged_pact_url, #latest_untagged_pact_url, #latest_verification_for_pact_url, #latest_verifications_for_consumer_version_url, #latest_version_url, #matrix_badge_url_for_selectors, #matrix_for_pact_url, #matrix_for_pacticipant_version_url, #matrix_url, #matrix_url_from_params, #new_verification_url, #pact_triggered_webhooks_url, #pact_url, #pact_url_from_params, #pact_version_url, #pact_version_url_with_metadata, #pact_version_url_with_webhook_metadata, #pact_version_with_consumer_version_metadata_url, #pact_versions_for_branch_url, #pact_versions_url, #pacticipant_url, #pacticipant_url_from_params, #pacticipants_url, #pacticipants_with_label_url, #previous_distinct_diff_url, #previous_distinct_pact_version_url, #provider_webhooks_url, #record_undeployment_url, #released_version_url, #released_versions_for_version_and_environment_url, #tag_url, #tagged_pact_versions_url, #tags_url, #templated_branch_version_url_for_pacticipant, #templated_can_i_deploy_badge_url, #templated_can_i_deploy_branch_to_environment_badge_url, #templated_can_i_deploy_url, #templated_diff_url, #templated_label_url_for_pacticipant, #templated_tag_url_for_pacticipant, #templated_version_url_for_pacticipant, #triggered_webhook_logs_url, #url_encode, #verification_publication_url, #verification_triggered_webhooks_url, #verification_url, #verification_url_from_params, #version_url, #version_url_from_params, #versions_url, #webhook_execution_url, #webhook_url, #webhooks_for_consumer_and_provider_url, #webhooks_for_pact_url, #webhooks_status_url, #webhooks_url

Methods included from Pacts::Metadata

#build_metadata_for_consumer_version_number, #build_metadata_for_latest_pact, #build_metadata_for_pact_for_verification, #build_metadata_for_webhook_triggered_by_pact_publication, #parse_hash, #parse_metadata, #parse_object

Methods included from Services

#badge_service, #branch_service, #certificate_service, #contract_service, #deployed_version_service, #environment_service, #get, #group_service, #index_service, #integration_service, #label_service, #matrix_service, #metrics_service, #pact_service, #pacticipant_service, #register_default_services, #register_service, #released_version_service, #tag_service, #verification_service, #version_service, #webhook_service, #webhook_trigger_service

Constructor Details

This class inherits a constructor from PactBroker::Api::Resources::BaseResource

Instance Method Details

#allowed_methodsObject



20
21
22
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 20

def allowed_methods
  ["GET", "PUT", "PATCH", "DELETE", "OPTIONS"]
end

#content_types_acceptedObject



13
14
15
16
17
18
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 13

def content_types_accepted
  [
    ["application/json", :from_json],
    ["application/merge-patch+json", :from_merge_patch_json]
  ]
end

#content_types_providedObject



9
10
11
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 9

def content_types_provided
  [["application/hal+json", :to_json]]
end

#create_new_pacticipantObject



91
92
93
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 91

def create_new_pacticipant
  pacticipant_service.create parsed_pacticipant(OpenStruct.new).to_h.merge(:name => pacticipant_name)
end

#delete_resourceObject



62
63
64
65
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 62

def delete_resource
  pacticipant_service.delete(pacticipant_name)
  true
end

#from_jsonObject



36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 36

def from_json
  if pacticipant
    @pacticipant = update_existing_pacticipant
  else
    if request.patch? # for backwards compatibility, wish I hadn't done this
      @pacticipant = create_new_pacticipant
      response.headers["Location"] = pacticipant_url(base_url, pacticipant)
    else
      return 404
    end
  end
  response.body = to_json
end

#from_merge_patch_jsonObject



50
51
52
53
54
55
56
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 50

def from_merge_patch_json
  if request.patch?
    from_json
  else
    415
  end
end

#known_methodsObject



24
25
26
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 24

def known_methods
  super + ["PATCH"]
end

#malformed_request?Boolean

Returns:

  • (Boolean)


28
29
30
31
32
33
34
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 28

def malformed_request?
  if request.patch? || request.put?
    invalid_json? || validation_errors_for_schema?
  else
    false
  end
end

#parsed_pacticipant(pacticipant) ⇒ Object



71
72
73
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 71

def parsed_pacticipant(pacticipant)
  decorator_class(:pacticipant_decorator).new(pacticipant).from_json(request_body)
end

#policy_nameObject



75
76
77
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 75

def policy_name
  :'pacticipants::pacticipant'
end

#resource_exists?Boolean

Returns:

  • (Boolean)


58
59
60
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 58

def resource_exists?
  !!pacticipant
end

#schemaObject



79
80
81
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 79

def schema
  PactBroker::Api::Contracts::PacticipantSchema
end

#to_jsonObject



67
68
69
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 67

def to_json
  decorator_class(:pacticipant_decorator).new(pacticipant).to_json(decorator_options)
end

#update_existing_pacticipantObject



83
84
85
86
87
88
89
# File 'lib/pact_broker/api/resources/pacticipant.rb', line 83

def update_existing_pacticipant
  if request.really_put?
    @pacticipant = pacticipant_service.replace(pacticipant_name, parsed_pacticipant(OpenStruct.new))
  else
    @pacticipant = pacticipant_service.update(pacticipant_name, parsed_pacticipant(pacticipant))
  end
end