ETLane 0.1.53 → 0.1.56

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: 104b95a63c7b6761c547a9d1985228212bd6bc6783ee432d6956a4ea4b6e4cd6
4
- data.tar.gz: e5b1c3c905d51be3eb2d68438df63a4a21b2d8af11dcbeba8c97cbc6c6ecec8e
3
+ metadata.gz: 48491fc3e96723355135d2a82edf2c6760c80d22861aed3afc88b3c21e49c255
4
+ data.tar.gz: 218e7ae0c92f2b0d917af6e9509a000a4ef9d2c1dfd1aad8db04a2f0ec7d2465
5
5
  SHA512:
6
- metadata.gz: b8dbf9e3706886ec13cc10a57a7616a7512b0e91f85caa56436e96a6adfa247c8fa8d4aa5ededfe6d0889555ecdecb508f1d2fa40781d6850babe8c2d38c11d2
7
- data.tar.gz: f24c55b42fe5a5630b6b3157330c6550dcccb179aadbb6593875142d8e581f66066059e3c0ff94cfd93f4c5b6c26860bde0e8fadd69188dedeb7a9db3990728f
6
+ metadata.gz: 80a4738f820fd2a6e50b7987830f457eca1f21e0c788f202d540c7616f5659c55cb449ced16d2aad89e7267aa29851a59564ab42bfa214cb9002a8d4fcfd2822
7
+ data.tar.gz: d7fd1fd27f744e03d463625e6db7f1048549711111f639af7c5bb7d45653291e5a640d217cdde39d20af32c3a4fd73a52714a3128e3ddc7367006ad75386f91c
data/Lanes/CommonFastfile CHANGED
@@ -29,6 +29,14 @@ platform :ios do
29
29
  provisioningProfiles[extension_bundle_identifier] = extension_profile_uuid
30
30
  end
31
31
 
32
+ number = latest_testflight_build_number()
33
+ build_number = "#{number + 1}"
34
+ ENV["FL_BUILD_NUMBER_BUILD_NUMBER"] = build_number
35
+ version = get_version_number(target: project_name) + " (" + build_number + ")"
36
+ branch_name = "feature/#{build_number}"
37
+ sh("git", "checkout", "-B", branch_name)
38
+ increment_and_push()
39
+
32
40
  team_id = CredentialsManager::AppfileConfig.try_fetch_value(:team_id)
33
41
  build_app(
34
42
  workspace: "#{project_name}.xcworkspace",
@@ -54,13 +62,6 @@ platform :ios do
54
62
  merge_commit_filtering: "exclude_merges" # Optional, lets you filter out merge commits
55
63
  )
56
64
  puts changelog
57
- number = latest_testflight_build_number()
58
- build_number = "#{number + 1}"
59
- ENV["FL_BUILD_NUMBER_BUILD_NUMBER"] = build_number
60
- version = get_version_number(target: project_name) + " (" + build_number + ")"
61
- branch_name = "feature/#{build_number}"
62
- sh("git", "checkout", "-B", branch_name)
63
- increment_and_push()
64
65
 
65
66
  beta_app_review_info = {}
66
67
  if ENV["ET_BETA_APP_REVIEW_INFO"]
@@ -109,6 +110,18 @@ platform :ios do
109
110
 
110
111
  end
111
112
 
113
+ lane :tg do |options|
114
+ ENV["TG_BOT_TOKEN"] = "1444430330:AAHizdTPzbTgTF-rIsYr53ioCyKHc3I2F3Q"
115
+ ENV["TG_CHAT_ID"] = "-1001683750222"
116
+ telegram(
117
+ token: ENV['TG_BOT_TOKEN'], # get token from @BotFather
118
+ chat_id: ENV['TG_CHAT_ID'], # https://stackoverflow.com/questions/33858927/how-to-obtain-the-chat-id-of-a-private-telegram-channel
119
+ text: "Hello world, Telegram!", # Required
120
+ # file: "file.pdf", # Optional. Please note, Bots can currently send files of any type of up to 50 MB in size.
121
+ # mime_type: "application/pdf" # Required if file exist
122
+ )
123
+ end
124
+
112
125
  lane :metadata do |options|
113
126
  setup_new_session(options)
114
127
  username = options[:username]
@@ -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.53
4
+ version: 0.1.56
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-04 00:00:00.000000000 Z
11
+ date: 2022-04-12 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