ETLane 0.1.57 → 0.1.58

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a7c5ac67b79433f29a602dbded2e9cb231c5bedc0d9bdd24ac2d7c0ef6e2fe4
4
- data.tar.gz: 86dc7c034450676adbd3d35f02107cbc6a83273c35cf958e632ac7af556c1adc
3
+ metadata.gz: 63cd62a1f4b8d6d6bcbc20d49484d46d0abb0bbf230d9b6ec623d11ae4bac47a
4
+ data.tar.gz: bcf1ccf8a8d5b2efcfbea4dc032c85442bc70155ebb3a3370d121ae15fbb4d60
5
5
  SHA512:
6
- metadata.gz: d158df23667725b8b902aaf7f8880c10f6af0ba16dae2b97cf0f082936608ebd9edcb37429ecfad361c332177a1ddfc07c58b47320740a896dedcb46aeb29c6f
7
- data.tar.gz: f48a02f602cfcb88d935a02663898586086b4484ca35af7bc6fcda67a40a68230b5628c07051d98d59386b466ecc1c6d592976dffe5de1ba95590ff9e7aa064a
6
+ metadata.gz: 13706bbbe344bd16a1b4eb259385afc61d4e24c6aedb12214d28d79418d921d8af87af18e6e5501b191630d64a13e2ca11c3e7f8407a22bf8b14b15ed0e2937e
7
+ data.tar.gz: cf4c12f67cb01752df7aa5c4c08b1db9856b996cc876ccae723e253112f1ac6f056af45f00b91035d3e6448f63f73d73786f228405a8c91b74af70be3c7df5e4
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.57
4
+ version: 0.1.58
5
5
  platform: ruby
6
6
  authors:
7
7
  - teanet
@@ -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