rs_server_common/authentication/authentication_to_external.md
Authentication to external stations module.
ServiceNotFound
Bases: Exception
Raised if there are no existing service matching the provided domain
Source code in docs/rs-server/services/common/rs_server_common/authentication/authentication_to_external.py
41 42 | |
__read_configuration()
Read the rs-server configuration for authentication to extenal stations.
In local mode, we read an existing rs-server.yaml local file, either customized by the user or released with the source code.
In cluster mode, we read the environment variables with the pattern:
RSPY__TOKEN__
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
A dictionary containing the configuration data |
Raises:
| Type | Description |
|---|---|
HTTPException
|
|
Source code in docs/rs-server/services/common/rs_server_common/authentication/authentication_to_external.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | |
load_external_auth_config(station_id=None, service=None, domain=None)
Load the external authentication configuration from a given station and service or from a domain. Args: station_id (Optional[str]): The ID of the station for which the authorization token is set. service (Optional[str]): The service name ("auxip" or "cadip") used to retrieve the token. domain (Optional[str]): The domain related to the station for the token.
Raises:
| Type | Description |
|---|---|
ValueError
|
If the station_id is None or an empty string. |
Exception
|
If token retrieval fails for any reason, a general exception will be logged. |
Source code in docs/rs-server/services/common/rs_server_common/authentication/authentication_to_external.py
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | |
load_external_auth_config_by_domain(domain)
Load the external authentication configuration based on the domain from a YAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
str
|
The domain to search for in the authentication configuration. |
required |
Returns:
| Type | Description |
|---|---|
StationExternalAuthenticationConfig | S3ExternalAuthenticationConfig | None
|
Optional[StationExternalAuthenticationConfig | S3ExternalAuthenticationConfig]: An object representing the |
StationExternalAuthenticationConfig | S3ExternalAuthenticationConfig | None
|
external authentication configuration, with a variation if it is for a regular external station or an external |
StationExternalAuthenticationConfig | S3ExternalAuthenticationConfig | None
|
S3 bucket, or None if the station or service is not found or if an error occurs. |
Source code in docs/rs-server/services/common/rs_server_common/authentication/authentication_to_external.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | |
load_external_auth_config_by_station_service(station_id, service=None)
Load the external authentication configuration for a given station and service from a YAML file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
station_id
|
str
|
The ID of the station for which the authentication config is being loaded. |
required |
service
|
str
|
The name of the service ("auxip" or "cadip") to load the authentication configuration for. |
None
|
Returns:
| Type | Description |
|---|---|
StationExternalAuthenticationConfig | S3ExternalAuthenticationConfig | None
|
Optional[StationExternalAuthenticationConfig | S3ExternalAuthenticationConfig]: An object representing the |
StationExternalAuthenticationConfig | S3ExternalAuthenticationConfig | None
|
external authentication configuration, with a variation if it is for a regular external station or an external |
StationExternalAuthenticationConfig | S3ExternalAuthenticationConfig | None
|
S3 bucket, or None if the station or service is not found or if an error occurs. |
Source code in docs/rs-server/services/common/rs_server_common/authentication/authentication_to_external.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | |