Class: Fastlane::Actions::GetGithubReleaseAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::GetGithubReleaseAction
- Defined in:
- lib/fastlane/actions/get_github_release.rb
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .output ⇒ Object
Class Method Summary collapse
Methods inherited from Fastlane::Action
action_name, author, return_value, sh, step_text
Class Method Details
.authors ⇒ Object
134 135 136 |
# File 'lib/fastlane/actions/get_github_release.rb', line 134 def self. ["KrauseFx", "czechboy0", "jaleksynas"] end |
.available_options ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/fastlane/actions/get_github_release.rb', line 107 def self. [ 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| raise "Please only pass the path, e.g. 'KrauseFx/fastlane'".red if value.include? "github.com" raise "Please only pass the path, e.g. 'KrauseFx/fastlane'".red 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| raise "Please include the protocol in the server url, e.g. https://your.github.server".red 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", description: "GitHub Personal Token (required for private repositories)", optional: true) ] end |
.description ⇒ Object
52 53 54 |
# File 'lib/fastlane/actions/get_github_release.rb', line 52 def self.description "This will verify if a given release version is available on GitHub" end |
.details ⇒ Object
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 |
# File 'lib/fastlane/actions/get_github_release.rb', line 56 def self.details sample = ' {"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" }' [ "This will return all information about a release. For example:", sample ].join("\n") end |
.is_supported?(platform) ⇒ Boolean
138 139 140 |
# File 'lib/fastlane/actions/get_github_release.rb', line 138 def self.is_supported?(platform) true end |
.output ⇒ Object
101 102 103 104 105 |
# File 'lib/fastlane/actions/get_github_release.rb', line 101 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 45 46 |
# File 'lib/fastlane/actions/get_github_release.rb', line 8 def self.run(params) Helper.log.info "Getting release on GitHub (#{params[:server_url]}/#{params[:url]}: #{params[:version]})" require 'excon' require 'base64' server_url = params[:server_url] server_url = server_url[0..-2] if server_url.end_with? '/' headers = { 'User-Agent' => 'fastlane-get_github_release' } headers['Authorization'] = "Basic #{Base64.strict_encode64(params[:api_token])}" if params[:api_token] response = Excon.get("#{server_url}/repos/#{params[:url]}/releases", headers: headers) case response[:status] when 404 Helper.log.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).".red return nil when 401 Helper.log.error "You are not authorized to access #{params[:url]}, please make sure you provided a valid API token.".red return nil else if response[:status] != 200 Helper.log.error "GitHub responded with #{response[:status]}:#{response[:body]}".red return nil end end result = JSON.parse(response.body) result.each do |current| next unless current['tag_name'] == params[:version] # Found it Actions.lane_context[SharedValues::GET_GITHUB_RELEASE_INFO] = current Helper.log.info "Version is already live on GitHub.com 🚁" return current end Helper.log.info "Couldn't find GitHub release #{params[:version]}".yellow return nil end |