Module: Crowdin::ApiResources::Distributions

Defined in:
lib/crowdin-api/api_resources/distributions.rb

Instance Method Summary collapse

Instance Method Details

#add_distribution(query = {}, project_id = config.project_id) ⇒ Object

Parameters:

  • query (Hash) (defaults to: {})

    Request Body



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/crowdin-api/api_resources/distributions.rb', line 24

def add_distribution(query = {}, project_id = config.project_id)
  project_id || raise_project_id_is_required_error

  request = Web::Request.new(
    connection,
    :post,
    "#{config.target_api_url}/projects/#{project_id}/distributions",
    { params: query }
  )
  Web::SendRequest.new(request).perform
end

#delete_distribution(hash = nil, project_id = config.project_id) ⇒ Object

Parameters:

  • hash (String) (defaults to: nil)

    Hash



54
55
56
57
58
59
60
61
62
63
64
# File 'lib/crowdin-api/api_resources/distributions.rb', line 54

def delete_distribution(hash = nil, project_id = config.project_id)
  hash       || raise_parameter_is_required_error(:hash)
  project_id || raise_project_id_is_required_error

  request = Web::Request.new(
    connection,
    :delete,
    "#{config.target_api_url}/projects/#{project_id}/distributions/#{hash}"
  )
  Web::SendRequest.new(request).perform
end

#edit_distribution(hash = nil, query = {}, project_id = config.project_id) ⇒ Object

Parameters:

  • hash (String) (defaults to: nil)

    Hash

  • query (Hash) (defaults to: {})

    Request Body



70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/crowdin-api/api_resources/distributions.rb', line 70

def edit_distribution(hash = nil, query = {}, project_id = config.project_id)
  hash       || raise_parameter_is_required_error(:hash)
  project_id || raise_project_id_is_required_error

  request = Web::Request.new(
    connection,
    :patch,
    "#{config.target_api_url}/projects/#{project_id}/distributions/#{hash}",
    { params: query }
  )
  Web::SendRequest.new(request).perform
end

#get_distribution(hash = nil, project_id = config.project_id) ⇒ Object

Parameters:

  • hash (String) (defaults to: nil)

    Hash



39
40
41
42
43
44
45
46
47
48
49
# File 'lib/crowdin-api/api_resources/distributions.rb', line 39

def get_distribution(hash = nil, project_id = config.project_id)
  hash       || raise_parameter_is_required_error(:hash)
  project_id || raise_project_id_is_required_error

  request = Web::Request.new(
    connection,
    :get,
    "#{config.target_api_url}/projects/#{project_id}/distributions/#{hash}"
  )
  Web::SendRequest.new(request).perform
end

#get_distribution_release(hash = nil, project_id = config.project_id) ⇒ Object

Parameters:

  • hash (String) (defaults to: nil)

    Hash



86
87
88
89
90
91
92
93
94
95
96
# File 'lib/crowdin-api/api_resources/distributions.rb', line 86

def get_distribution_release(hash = nil, project_id = config.project_id)
  hash       || raise_parameter_is_required_error(:hash)
  project_id || raise_project_id_is_required_error

  request = Web::Request.new(
    connection,
    :get,
    "#{config.target_api_url}/projects/#{project_id}/distributions/#{hash}/release"
  )
  Web::SendRequest.new(request).perform
end

#list_distributions(query = {}, project_id = config.project_id) ⇒ Object

Parameters:

  • query (Hash) (defaults to: {})

    Request Body



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/crowdin-api/api_resources/distributions.rb', line 9

def list_distributions(query = {}, project_id = config.project_id)
  project_id || raise_project_id_is_required_error

  request = Web::Request.new(
    connection,
    :get,
    "#{config.target_api_url}/projects/#{project_id}/distributions",
    { params: query }
  )
  Web::SendRequest.new(request).perform
end

#release_distribution(hash = nil, project_id = config.project_id) ⇒ Object

Parameters:

  • hash (String) (defaults to: nil)

    Hash



101
102
103
104
105
106
107
108
109
110
111
# File 'lib/crowdin-api/api_resources/distributions.rb', line 101

def release_distribution(hash = nil, project_id = config.project_id)
  hash       || raise_parameter_is_required_error(:hash)
  project_id || raise_project_id_is_required_error

  request = Web::Request.new(
    connection,
    :post,
    "#{config.target_api_url}/projects/#{project_id}/distributions/#{hash}/release"
  )
  Web::SendRequest.new(request).perform
end