-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SSP-2066_add_routes_and_controllers (#45)
* Move validate.php to symfony controller * Fix quality errors * Loggout Controller * LoggedOut Controller * Fix quality issues * composer require checker for dev environments * fix composer require checker version * Add tests for LogoutController.php part1 * psalm * LogoutController.php tests part 2 * add CAS10 validate.php tests * Add missing dependency * LoggedInController.php * Cas10 validate improvements * serviceValidate, proxyValidate, logoutController * samlValidate.php controller and tests * fix psalm errors * move proxy.php to Cas20Controller action * Removed cas.php.Added LoginController.php * UrlTrait tests * Add missing import * LoginController Tests * Tests for Cas20 validate * add tests for Proxy Service Validate * More tests on Cas20Controller.php * Use TicketStore abstract class type * Use Module::resolveClass * Use RunnableResponse instead of redirect * Added phpdocs * Fix run with docker instructions * xml response to UTF-8 * Fix validation condition for CAS10 * review fixes #1 * Intantiate classes after we finalize the casconfig overrides. Refactor checkServiceUrl.Improve composer validate. * fix UrlTrait::validate to handle proxy tickets * fix UrlTrait::validate call test for the different methods. * user RunnableResponse * preg_match better error handling * Use DOMDocumentFactory instead of ext-xml to parse the SOAP message * Refactor samlValidate, parsing postbody. * Improve saml validate * Improve samlValidate. Use saml11 1,2,4 * Move Cas20 validate function to TicketValidatorTrait * Create an enum list of configuration options that are allowed to be overriden. * Add missing enum file * fix saml11 versioning in composer * minor fixes * Remove PDO as a hard dependency. It's optional when using SQLTicketStore * Add more hints for running with docker * Allow `attributes` config item to be set per SP * Add missing trait dependency * Fix debug mode validation response rendering * Exclude public directory from lint and documentation checks * Remove js libraries * Add copy button and missing jquery dependency package * Replace text with langauge key * Remove unnecessary package --------- Co-authored-by: Tim van Dijen <[email protected]> Co-authored-by: Patrick Radtke <[email protected]>
- Loading branch information
1 parent
81b6b53
commit 5b35ab7
Showing
53 changed files
with
3,987 additions
and
1,716 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* end baseline CSS */ | ||
.hljs { | ||
background: #F3F3F3; | ||
color: #444 | ||
} | ||
/* Base color: saturation 0; */ | ||
.hljs-subst { | ||
/* default */ | ||
|
||
} | ||
/* purposely ignored */ | ||
.hljs-formula, | ||
.hljs-attr, | ||
.hljs-property, | ||
.hljs-params { | ||
|
||
} | ||
.hljs-comment { | ||
color: #697070 | ||
} | ||
.hljs-tag, | ||
.hljs-punctuation { | ||
color: #444a | ||
} | ||
.hljs-tag .hljs-name, | ||
.hljs-tag .hljs-attr { | ||
color: #444 | ||
} | ||
.hljs-keyword, | ||
.hljs-attribute, | ||
.hljs-selector-tag, | ||
.hljs-meta .hljs-keyword, | ||
.hljs-doctag, | ||
.hljs-name { | ||
font-weight: bold | ||
} | ||
/* User color: hue: 0 */ | ||
.hljs-type, | ||
.hljs-string, | ||
.hljs-number, | ||
.hljs-selector-id, | ||
.hljs-selector-class, | ||
.hljs-quote, | ||
.hljs-template-tag, | ||
.hljs-deletion { | ||
color: #880000 | ||
} | ||
.hljs-title, | ||
.hljs-section { | ||
color: #880000; | ||
font-weight: bold | ||
} | ||
.hljs-regexp, | ||
.hljs-symbol, | ||
.hljs-variable, | ||
.hljs-template-variable, | ||
.hljs-link, | ||
.hljs-selector-attr, | ||
.hljs-operator, | ||
.hljs-selector-pseudo { | ||
color: #ab5656 | ||
} | ||
/* Language color: hue: 90; */ | ||
.hljs-literal { | ||
color: #695 | ||
} | ||
.hljs-built_in, | ||
.hljs-bullet, | ||
.hljs-code, | ||
.hljs-addition { | ||
color: #397300 | ||
} | ||
/* Meta color: hue: 200 */ | ||
.hljs-meta { | ||
color: #1f7199 | ||
} | ||
.hljs-meta .hljs-string { | ||
color: #38a | ||
} | ||
/* Misc effects */ | ||
.hljs-emphasis { | ||
font-style: italic | ||
} | ||
.hljs-strong { | ||
font-weight: bold | ||
} | ||
.top-right-corner { | ||
right: 0; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.