google-apps-chat 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +31 -1
- data/lib/google/apps/chat/version.rb +1 -1
- data/lib/google/apps/chat.rb +36 -0
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a1737af1cd13a3969ada8a6b8cbc6d196e31ea682743d030145ec750cd8ebe7
|
4
|
+
data.tar.gz: d90066e09baa2aa48849178e2800ae33c97a270a894ee60e8e0f46f8d1c14785
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b82ce838d0281608adf599c9682d024b52ab6b4385079fe727cc125a5112a81d325772f00d4380cc1a71cfea2702793a26b7fc36d193858e9a27a83c6fbfbdb8
|
7
|
+
data.tar.gz: cebac9179b2d2c5e0d3980ce5469ce4c95a70805b2d3547c3c894ed4d4fa95182992a684b9d0744456bb7a9f3e7a61b2eca6d7e79b4f914aadce75c7f3d421d5
|
data/README.md
CHANGED
@@ -34,9 +34,39 @@ In order to use this library, you first need to go through the following steps:
|
|
34
34
|
1. [Enable the API.](https://console.cloud.google.com/apis/library/chat.googleapis.com)
|
35
35
|
1. {file:AUTHENTICATION.md Set up authentication.}
|
36
36
|
|
37
|
+
## Debug Logging
|
38
|
+
|
39
|
+
This library comes with opt-in Debug Logging that can help you troubleshoot
|
40
|
+
your application's integration with the API. When logging is activated, key
|
41
|
+
events such as requests and responses, along with data payloads and metadata
|
42
|
+
such as headers and client configuration, are logged to the standard error
|
43
|
+
stream.
|
44
|
+
|
45
|
+
**WARNING:** Client Library Debug Logging includes your data payloads in
|
46
|
+
plaintext, which could include sensitive data such as PII for yourself or your
|
47
|
+
customers, private keys, or other security data that could be compromising if
|
48
|
+
leaked. Always practice good data hygiene with your application logs, and follow
|
49
|
+
the principle of least access. Google also recommends that Client Library Debug
|
50
|
+
Logging be enabled only temporarily during active debugging, and not used
|
51
|
+
permanently in production.
|
52
|
+
|
53
|
+
To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
|
54
|
+
to the value `all`. Alternatively, you can set the value to a comma-delimited
|
55
|
+
list of client library gem names. This will select the default logging behavior,
|
56
|
+
which writes logs to the standard error stream. On a local workstation, this may
|
57
|
+
result in logs appearing on the console. When running on a Google Cloud hosting
|
58
|
+
service such as [Google Cloud Run](https://cloud.google.com/run), this generally
|
59
|
+
results in logs appearing alongside your application logs in the
|
60
|
+
[Google Cloud Logging](https://cloud.google.com/logging/) service.
|
61
|
+
|
62
|
+
Debug logging also requires that the versioned clients for this service be
|
63
|
+
sufficiently recent, released after about Dec 10, 2024. If logging is not
|
64
|
+
working, try updating the versioned clients in your bundle or installed gems:
|
65
|
+
[google-apps-chat-v1](https://cloud.google.com/ruby/docs/reference/google-apps-chat-v1/latest).
|
66
|
+
|
37
67
|
## Supported Ruby Versions
|
38
68
|
|
39
|
-
This library is supported on Ruby
|
69
|
+
This library is supported on Ruby 3.0+.
|
40
70
|
|
41
71
|
Google provides official support for Ruby versions that are actively supported
|
42
72
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
data/lib/google/apps/chat.rb
CHANGED
@@ -40,6 +40,11 @@ module Google
|
|
40
40
|
# You can also specify a different transport by passing `:rest` or `:grpc` in
|
41
41
|
# the `transport` parameter.
|
42
42
|
#
|
43
|
+
# Raises an exception if the currently installed versioned client gem for the
|
44
|
+
# given API version does not support the given transport of the ChatService service.
|
45
|
+
# You can determine whether the method will succeed by calling
|
46
|
+
# {Google::Apps::Chat.chat_service_available?}.
|
47
|
+
#
|
43
48
|
# ## About ChatService
|
44
49
|
#
|
45
50
|
# Enables developers to build Chat apps and
|
@@ -61,6 +66,37 @@ module Google
|
|
61
66
|
service_module = service_module.const_get(:Rest) if transport == :rest
|
62
67
|
service_module.const_get(:Client).new(&block)
|
63
68
|
end
|
69
|
+
|
70
|
+
##
|
71
|
+
# Determines whether the ChatService service is supported by the current client.
|
72
|
+
# If true, you can retrieve a client object by calling {Google::Apps::Chat.chat_service}.
|
73
|
+
# If false, that method will raise an exception. This could happen if the given
|
74
|
+
# API version does not exist or does not support the ChatService service,
|
75
|
+
# or if the versioned client gem needs an update to support the ChatService service.
|
76
|
+
#
|
77
|
+
# @param version [::String, ::Symbol] The API version to connect to. Optional.
|
78
|
+
# Defaults to `:v1`.
|
79
|
+
# @param transport [:grpc, :rest] The transport to use. Defaults to `:grpc`.
|
80
|
+
# @return [boolean] Whether the service is available.
|
81
|
+
#
|
82
|
+
def self.chat_service_available? version: :v1, transport: :grpc
|
83
|
+
require "google/apps/chat/#{version.to_s.downcase}"
|
84
|
+
package_name = Google::Apps::Chat
|
85
|
+
.constants
|
86
|
+
.select { |sym| sym.to_s.downcase == version.to_s.downcase.tr("_", "") }
|
87
|
+
.first
|
88
|
+
return false unless package_name
|
89
|
+
service_module = Google::Apps::Chat.const_get package_name
|
90
|
+
return false unless service_module.const_defined? :ChatService
|
91
|
+
service_module = service_module.const_get :ChatService
|
92
|
+
if transport == :rest
|
93
|
+
return false unless service_module.const_defined? :Rest
|
94
|
+
service_module = service_module.const_get :Rest
|
95
|
+
end
|
96
|
+
service_module.const_defined? :Client
|
97
|
+
rescue ::LoadError
|
98
|
+
false
|
99
|
+
end
|
64
100
|
end
|
65
101
|
end
|
66
102
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apps-chat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apps-chat-v1
|
@@ -62,7 +61,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
62
61
|
licenses:
|
63
62
|
- Apache-2.0
|
64
63
|
metadata: {}
|
65
|
-
post_install_message:
|
66
64
|
rdoc_options: []
|
67
65
|
require_paths:
|
68
66
|
- lib
|
@@ -70,15 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
68
|
requirements:
|
71
69
|
- - ">="
|
72
70
|
- !ruby/object:Gem::Version
|
73
|
-
version: '
|
71
|
+
version: '3.0'
|
74
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
73
|
requirements:
|
76
74
|
- - ">="
|
77
75
|
- !ruby/object:Gem::Version
|
78
76
|
version: '0'
|
79
77
|
requirements: []
|
80
|
-
rubygems_version: 3.
|
81
|
-
signing_key:
|
78
|
+
rubygems_version: 3.6.2
|
82
79
|
specification_version: 4
|
83
80
|
summary: The Google Chat API lets you build Chat apps to integrate your services with
|
84
81
|
Google Chat and manage Chat resources such as spaces, members, and messages.
|