ETLane 0.1.57 → 0.1.60
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Lanes/CommonFastfile +4 -0
- data/Lanes/actions/lokalise.rb +2 -0
- metadata +2 -3
- data/Lanes/actions/telegram_action.rb +0 -113
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1792becf8ec8aec1ba01ea9149bd9be3bcd76e011b5b0eff0b2ea653f8fb9af5
|
4
|
+
data.tar.gz: 534082c0cc0d99cab3eedca4be6f98ea36d724b1abfd885702771fde093df936
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90a0163d623358e2375912a825fcec73a729b634f44f9d457e4b3e1a0455f5157fadb5d85f680c920b4d9371cd34f3509193b71dc3da441e21cd522772d99b6d
|
7
|
+
data.tar.gz: c88d0399de9c2527d93b6afcccbfbe741ce001662fccff71fe6dcd0c4b510c709165773b956c3facc04e806201be1bb4f72ca8adfda40dfab2cb20ac03fe1db2
|
data/Lanes/CommonFastfile
CHANGED
data/Lanes/actions/lokalise.rb
CHANGED
@@ -34,6 +34,8 @@ module Fastlane
|
|
34
34
|
request['Content-Type'] = 'application/json'
|
35
35
|
http = Net::HTTP.new(uri.host, uri.port)
|
36
36
|
http.use_ssl = true
|
37
|
+
http.open_timeout = 300
|
38
|
+
http.read_timeout = 300
|
37
39
|
response = http.request(request)
|
38
40
|
|
39
41
|
jsonResponse = JSON.parse(response.body)
|
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.
|
4
|
+
version: 0.1.60
|
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-
|
11
|
+
date: 2022-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'Xcode helper for upload builds and metadata
|
14
14
|
|
@@ -29,7 +29,6 @@ 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
|
33
32
|
- Scripts/Package.resolved
|
34
33
|
- Scripts/Package.swift
|
35
34
|
- Scripts/README.md
|
@@ -1,113 +0,0 @@
|
|
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
|