ETLane 0.1.55 → 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 +4 -4
- data/Lanes/CommonFastfile +12 -0
- data/Lanes/actions/telegram_action.rb +113 -0
- metadata +2 -2
- data/Lanes/Pluginfile +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48491fc3e96723355135d2a82edf2c6760c80d22861aed3afc88b3c21e49c255
|
4
|
+
data.tar.gz: 218e7ae0c92f2b0d917af6e9509a000a4ef9d2c1dfd1aad8db04a2f0ec7d2465
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80a4738f820fd2a6e50b7987830f457eca1f21e0c788f202d540c7616f5659c55cb449ced16d2aad89e7267aa29851a59564ab42bfa214cb9002a8d4fcfd2822
|
7
|
+
data.tar.gz: d7fd1fd27f744e03d463625e6db7f1048549711111f639af7c5bb7d45653291e5a640d217cdde39d20af32c3a4fd73a52714a3128e3ddc7367006ad75386f91c
|
data/Lanes/CommonFastfile
CHANGED
@@ -110,6 +110,18 @@ platform :ios do
|
|
110
110
|
|
111
111
|
end
|
112
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
|
+
|
113
125
|
lane :metadata do |options|
|
114
126
|
setup_new_session(options)
|
115
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,7 +1,7 @@
|
|
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.56
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- teanet
|
@@ -20,7 +20,6 @@ extra_rdoc_files: []
|
|
20
20
|
files:
|
21
21
|
- Lanes/CommonFastfile
|
22
22
|
- Lanes/ExampleAppfile
|
23
|
-
- Lanes/Pluginfile
|
24
23
|
- Lanes/actions/README.md
|
25
24
|
- Lanes/actions/add_keys_to_lokalise.rb
|
26
25
|
- Lanes/actions/android/README.md
|
@@ -30,6 +29,7 @@ files:
|
|
30
29
|
- Lanes/actions/lokalise_metadata.rb
|
31
30
|
- Lanes/actions/lokalise_upload.rb
|
32
31
|
- Lanes/actions/previews.rb
|
32
|
+
- Lanes/actions/telegram_action.rb
|
33
33
|
- Scripts/Package.resolved
|
34
34
|
- Scripts/Package.swift
|
35
35
|
- Scripts/README.md
|
data/Lanes/Pluginfile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
gem 'fastlane-plugin-telegram'
|