Class: Fastlane::Actions::GetGithubReleaseAction

Inherits:
Fastlane::Action show all
Defined in:
fastlane/lib/fastlane/actions/get_github_release.rb

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorsObject



137
138
139
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 137

def self.authors
  ["KrauseFx", "czechboy0", "jaleksynas", "tommeier"]
end

.available_optionsObject



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 109

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :url,
                                 env_name: "FL_GET_GITHUB_RELEASE_URL",
                                 description: "The path to your repo, e.g. 'KrauseFx/fastlane'",
                                 verify_block: proc do |value|
                                   UI.user_error!("Please only pass the path, e.g. 'KrauseFx/fastlane'") if value.include?("github.com")
                                   UI.user_error!("Please only pass the path, e.g. 'KrauseFx/fastlane'") if value.split('/').count != 2
                                 end),
    FastlaneCore::ConfigItem.new(key: :server_url,
                                 env_name: "FL_GITHUB_RELEASE_SERVER_URL",
                                 description: "The server url. e.g. 'https://your.github.server/api/v3' (Default: 'https://api.github.com')",
                                 default_value: "https://api.github.com",
                                 optional: true,
                                 verify_block: proc do |value|
                                   UI.user_error!("Please include the protocol in the server url, e.g. https://your.github.server") unless value.include?("//")
                                 end),
    FastlaneCore::ConfigItem.new(key: :version,
                                 env_name: "FL_GET_GITHUB_RELEASE_VERSION",
                                 description: "The version tag of the release to check"),
    FastlaneCore::ConfigItem.new(key: :api_token,
                                 env_name: "FL_GITHUB_RELEASE_API_TOKEN",
                                 sensitive: true,
                                 description: "GitHub Personal Token (required for private repositories)",
                                 optional: true)
  ]
end

.categoryObject



158
159
160
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 158

def self.category
  :source_control
end

.descriptionObject



50
51
52
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 50

def self.description
  "This will verify if a given release version is available on GitHub"
end

.detailsObject



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 54

def self.details
  sample = <<-SAMPLE.markdown_sample
    ```no-highlight
    {
      "url"=>"https://api.github.com/repos/KrauseFx/fastlane/releases/1537713",
       "assets_url"=>"https://api.github.com/repos/KrauseFx/fastlane/releases/1537713/assets",
       "upload_url"=>"https://uploads.github.com/repos/KrauseFx/fastlane/releases/1537713/assets{?name}",
       "html_url"=>"https://github.com/fastlane/fastlane/releases/tag/1.8.0",
       "id"=>1537713,
       "tag_name"=>"1.8.0",
       "target_commitish"=>"master",
       "name"=>"1.8.0 Switch Lanes & Pass Parameters",
       "draft"=>false,
       "author"=>
        {"login"=>"KrauseFx",
         "id"=>869950,
         "avatar_url"=>"https://avatars.githubusercontent.com/u/869950?v=3",
         "gravatar_id"=>"",
         "url"=>"https://api.github.com/users/KrauseFx",
         "html_url"=>"https://github.com/fastlane",
         "followers_url"=>"https://api.github.com/users/KrauseFx/followers",
         "following_url"=>"https://api.github.com/users/KrauseFx/following{/other_user}",
         "gists_url"=>"https://api.github.com/users/KrauseFx/gists{/gist_id}",
         "starred_url"=>"https://api.github.com/users/KrauseFx/starred{/owner}{/repo}",
         "subscriptions_url"=>"https://api.github.com/users/KrauseFx/subscriptions",
         "organizations_url"=>"https://api.github.com/users/KrauseFx/orgs",
         "repos_url"=>"https://api.github.com/users/KrauseFx/repos",
         "events_url"=>"https://api.github.com/users/KrauseFx/events{/privacy}",
         "received_events_url"=>"https://api.github.com/users/KrauseFx/received_events",
         "type"=>"User",
         "site_admin"=>false},
       "prerelease"=>false,
       "created_at"=>"2015-07-14T23:33:01Z",
       "published_at"=>"2015-07-14T23:44:10Z",
       "assets"=>[],
       "tarball_url"=>"https://api.github.com/repos/KrauseFx/fastlane/tarball/1.8.0",
       "zipball_url"=>"https://api.github.com/repos/KrauseFx/fastlane/zipball/1.8.0",
       "body"=> ...Markdown...
      "This is one of the biggest updates of _fastlane_ yet"
    }
    ```
  SAMPLE

  [
    "This will return all information about a release. For example:".markdown_preserve_newlines,
    sample
  ].join("\n")
end

.example_codeObject



145
146
147
148
149
150
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 145

def self.example_code
  [
    'release = get_github_release(url: "fastlane/fastlane", version: "1.0.0")
    puts release["name"]'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:



141
142
143
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 141

def self.is_supported?(platform)
  true
end

.outputObject



103
104
105
106
107
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 103

def self.output
  [
    ['GET_GITHUB_RELEASE_INFO', 'Contains all the information about this release']
  ]
end

.run(params) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 8

def self.run(params)
  UI.message("Getting release on GitHub (#{params[:server_url]}/#{params[:url]}: #{params[:version]})")

  GithubApiAction.run(
    server_url: params[:server_url],
    api_token: params[:api_token],
    http_method: 'GET',
    path: "repos/#{params[:url]}/releases",
    error_handlers: {
      404 => proc do |result|
        UI.error("Repository #{params[:url]} cannot be found, please double check its name and that you provided a valid API token (if it's a private repository).")
        return nil
      end,
      401 => proc do |result|
        UI.error("You are not authorized to access #{params[:url]}, please make sure you provided a valid API token.")
        return nil
      end,
      '*' => proc do |result|
        UI.error("GitHub responded with #{result[:status]}:#{result[:body]}")
        return nil
      end
    }
  ) do |result|
    json = result[:json]
    json.each do |current|
      next unless current['tag_name'] == params[:version]

      # Found it
      Actions.lane_context[SharedValues::GET_GITHUB_RELEASE_INFO] = current
      UI.message("Version is already live on GitHub.com 🚁")
      return current
    end
  end

  UI.important("Couldn't find GitHub release #{params[:version]}")
  return nil
end

.sample_return_valueObject



152
153
154
155
156
# File 'fastlane/lib/fastlane/actions/get_github_release.rb', line 152

def self.sample_return_value
  {
    "name" => "name"
  }
end