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
37 38 | |
__read_configuration()
Read the rs-server configuration for authentication to extenal stations.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
dict
|
A dictionary containing the configuration data |
Source code in docs/rs-server/services/common/rs_server_common/authentication/authentication_to_external.py
41 42 43 44 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 | |
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
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 186 187 188 189 | |
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
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | |
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
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 | |