ETLane 0.1.54 → 0.1.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f3a4df392d3a20b4c25e13a28313b98bcd684e99f096f3b0a50db0d7b76bc665
4
- data.tar.gz: ff0e4aeded6130dd592cb77d2f632681bf9a3e0c3d10f996a4717f37cb45016a
3
+ metadata.gz: 6a7c5ac67b79433f29a602dbded2e9cb231c5bedc0d9bdd24ac2d7c0ef6e2fe4
4
+ data.tar.gz: 86dc7c034450676adbd3d35f02107cbc6a83273c35cf958e632ac7af556c1adc
5
5
  SHA512:
6
- metadata.gz: 24c48e08aabb4cd185b5e788d3ea8d73943bff31010bbaa33c1e7185ef535a53f3e804d7dc26d15ce16e72990aac39d851a923fa0200e0ee16893b7c42d5c321
7
- data.tar.gz: c7f76ccbbf89bc8ef764d1fd8258de030c371d928520f773d1f6dbbd4e37dfe654ed263b19053719b8a8aa92d59d79e8521bf0f7078d784e1a63348db6895f80
6
+ metadata.gz: d158df23667725b8b902aaf7f8880c10f6af0ba16dae2b97cf0f082936608ebd9edcb37429ecfad361c332177a1ddfc07c58b47320740a896dedcb46aeb29c6f
7
+ data.tar.gz: f48a02f602cfcb88d935a02663898586086b4484ca35af7bc6fcda67a40a68230b5628c07051d98d59386b466ecc1c6d592976dffe5de1ba95590ff9e7aa064a
data/Lanes/CommonFastfile CHANGED
@@ -207,15 +207,26 @@ platform :ios do
207
207
  end
208
208
 
209
209
  lane :increment_and_push do |options|
210
- increment_build_number
210
+ push = options[:push]
211
+ bump = true
212
+ if get_build_number() == ENV["FL_BUILD_NUMBER_BUILD_NUMBER"]
213
+ bump = false
214
+ push = false
215
+ else
216
+ increment_build_number
217
+ end
211
218
  bump_type = options[:bump_type]
212
219
  if bump_type
220
+ bump = true
213
221
  increment_version_number(
214
222
  bump_type: bump_type
215
223
  )
216
224
  end
217
- commit_bump(message: "Bump up version")
218
- if options[:push]
225
+ if bump
226
+ commit_bump(message: "Bump up version")
227
+ end
228
+
229
+ if push
219
230
  push_to_git_remote
220
231
  end
221
232
  end
@@ -0,0 +1,113 @@
1
+ module Fastlane
2
+ module Actions
3
+ class TelegramAction < Action
4
+ def self.run(params)
5
+ UI.message("Sending message to a telegram channel")
6
+
7
+ token = params[:token]
8
+ chat_id = params[:chat_id]
9
+ text = params[:text]
10
+ parse_mode = params[:parse_mode]
11
+ file_path = params[:file]
12
+ mime_type = params[:mime_type]
13
+
14
+ file = nil
15
+ if file_path != nil
16
+ if File.exist?(file_path)
17
+ if mime_type == nil
18
+ UI.user_error!("The mime type, required for send file")
19
+ end
20
+
21
+ file = UploadIO.new(file_path, mime_type)
22
+ end
23
+ end
24
+
25
+ if file_path != nil && file == nil
26
+ UI.message("Can't find file on path location")
27
+ end
28
+
29
+ method = (file == nil ? "sendMessage" : "sendDocument")
30
+ uri = URI.parse("https://api.telegram.org/bot#{token}/#{method}")
31
+
32
+ http = Net::HTTP.new(uri.host, uri.port)
33
+ if params[:proxy]
34
+ proxy_uri = URI.parse(params[:proxy])
35
+ http = Net::HTTP.new(uri.host, uri.port, proxy_uri.host, proxy_uri.port, proxy_uri.user, proxy_uri.password)
36
+ end
37
+ http.use_ssl = true
38
+
39
+ require 'net/http/post/multipart'
40
+ text_parameter = (file == nil ? "text" : "caption")
41
+ request = Net::HTTP::Post::Multipart.new(uri,
42
+ {
43
+ "chat_id" => chat_id,
44
+ text_parameter => text,
45
+ "parse_mode" => parse_mode,
46
+ "document" => file
47
+ })
48
+
49
+ response = http.request(request)
50
+ end
51
+
52
+ def self.description
53
+ "Allows post messages to telegram channel"
54
+ end
55
+
56
+ def self.authors
57
+ ["sergpetrov"]
58
+ end
59
+
60
+ def self.return_value
61
+ response
62
+ end
63
+
64
+ def self.details
65
+ "Allows post messages to telegram channel"
66
+ end
67
+
68
+ def self.available_options
69
+ [
70
+ FastlaneCore::ConfigItem.new(key: :token,
71
+ env_name: "TELEGRAM_TOKEN",
72
+ description: "A unique authentication token given when a bot is created",
73
+ optional: false,
74
+ type: String),
75
+ FastlaneCore::ConfigItem.new(key: :chat_id,
76
+ env_name: "TELEGRAM_CHAT_ID",
77
+ description: "Unique identifier for the target chat (not in the format @channel). For getting chat id you can send any message to your bot and get chat id from response https://api.telegram.org/botYOUR_TOKEN/getupdates",
78
+ optional: false,
79
+ type: String),
80
+ FastlaneCore::ConfigItem.new(key: :text,
81
+ env_name: "TELEGRAM_TEXT",
82
+ description: "Text of the message to be sent",
83
+ optional: false,
84
+ type: String),
85
+ FastlaneCore::ConfigItem.new(key: :file,
86
+ env_name: "TELEGRAM_FILE",
87
+ description: "File path to the file to be sent",
88
+ optional: true,
89
+ type: String),
90
+ FastlaneCore::ConfigItem.new(key: :mime_type,
91
+ env_name: "TELEGRAM_FILE_MIME_TYPE",
92
+ description: "Mime type of file to be sent",
93
+ optional: true,
94
+ type: String),
95
+ FastlaneCore::ConfigItem.new(key: :parse_mode,
96
+ env_name: "TELEGRAM_PARSE_MODE",
97
+ description: "Param (Markdown / HTML) for using markdown or HTML support in message",
98
+ optional: true,
99
+ type: String),
100
+ FastlaneCore::ConfigItem.new(key: :proxy,
101
+ env_name: "TELEGRAM_PROXY",
102
+ description: "Proxy URL to be used in network requests. Example: (https://123.45.67.89:80)",
103
+ optional: true,
104
+ type: String)
105
+ ]
106
+ end
107
+
108
+ def self.is_supported?(platform)
109
+ true
110
+ end
111
+ end
112
+ end
113
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ETLane
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.54
4
+ version: 0.1.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - teanet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-05 00:00:00.000000000 Z
11
+ date: 2022-04-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'Xcode helper for upload builds and metadata
14
14
 
@@ -29,6 +29,7 @@ files:
29
29
  - Lanes/actions/lokalise_metadata.rb
30
30
  - Lanes/actions/lokalise_upload.rb
31
31
  - Lanes/actions/previews.rb
32
+ - Lanes/actions/telegram_action.rb
32
33
  - Scripts/Package.resolved
33
34
  - Scripts/Package.swift
34
35
  - Scripts/README.md