You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by vn...@apache.org on 2020/12/16 19:20:31 UTC

[guacamole-client] 01/01: GUACAMOLE-1218: Merge "guacamole-auth-json" extension into Apache Guacamole.

This is an automated email from the ASF dual-hosted git repository.

vnick pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/guacamole-client.git

commit 6fc7537c089371ddf5235c2071c3e66811dc3e3c
Merge: 3624ffe 27d791d
Author: Virtually Nick <ne...@users.noreply.github.com>
AuthorDate: Wed Dec 16 14:20:19 2020 -0500

    GUACAMOLE-1218: Merge "guacamole-auth-json" extension into Apache Guacamole.

 extensions/guacamole-auth-json/.gitignore          |   2 +
 extensions/guacamole-auth-json/README.md           | 189 ++++++++++
 extensions/guacamole-auth-json/doc/encrypt-json.sh | 116 +++++++
 extensions/guacamole-auth-json/pom.xml             | 147 ++++++++
 .../guacamole-auth-json/src/licenses/LICENSE       | 265 ++++++++++++++
 extensions/guacamole-auth-json/src/licenses/NOTICE |   5 +
 .../src/licenses/bundled/aopalliance-1.0/LICENSE   |   4 +
 .../src/licenses/bundled/guice-3.0/COPYING         | 202 +++++++++++
 .../licenses/bundled/jackson-1.9.2/LICENSE-2.0.txt | 202 +++++++++++
 .../bundled/javax.inject-1/LICENSE-2.0.txt         | 202 +++++++++++
 .../bundled/spring-framework-5.2.9/LICENSE.txt     | 202 +++++++++++
 .../bundled/spring-security-5.4.1/LICENSE.txt      | 202 +++++++++++
 .../bundled/spring-security-5.4.1/notice.txt       |  20 ++
 .../guacamole-auth-json/src/main/assembly/dist.xml |  54 +++
 .../auth/json/AuthenticationProviderService.java   | 116 +++++++
 .../guacamole/auth/json/ConfigurationService.java  | 101 ++++++
 .../apache/guacamole/auth/json/CryptoService.java  | 199 +++++++++++
 .../auth/json/JSONAuthenticationProvider.java      |  82 +++++
 .../json/JSONAuthenticationProviderModule.java     |  85 +++++
 .../auth/json/RequestValidationService.java        | 102 ++++++
 .../auth/json/connection/ConnectionService.java    | 303 ++++++++++++++++
 .../auth/json/user/AuthenticatedUser.java          |  92 +++++
 .../guacamole/auth/json/user/UserContext.java      |  87 +++++
 .../apache/guacamole/auth/json/user/UserData.java  | 386 +++++++++++++++++++++
 .../auth/json/user/UserDataConnection.java         | 187 ++++++++++
 .../guacamole/auth/json/user/UserDataDenylist.java | 109 ++++++
 .../guacamole/auth/json/user/UserDataService.java  | 373 ++++++++++++++++++++
 .../src/main/resources/guac-manifest.json          |  16 +
 .../src/main/resources/translations/en.json        |   7 +
 .../guacamole/properties/ByteArrayProperty.java    |  52 +++
 .../guacamole/properties/StringListProperty.java   |  61 ++++
 pom.xml                                            |   1 +
 32 files changed, 4171 insertions(+)