3.8.0 Release (#230)
* Initial Coding Standards & Static Analysis Chanages. * Adds WordPress coding standards configuration. * Adds WordPress/PHP static analysis configuration. * Adds Git hooks to enforce checks and ensure quality on commits. * Adds initial local Docker development environment setup. * Current state of coding standards and analysis fixes. * Near Completion Update of PHP Code Sniffer Compliance Changes. * Fixes all PHP Code Sniffer WordPress Coding Standards Issues. * Updates Code Base to Pass Level 5 Baseline * Ensures PHP Code Sniffs continue to pass. * Fixes all code base issues to pass a level 5 PHP static analysis. * Updates PHPStan configurations to use a level 5 baseline. * Fixes Travis CI Configuration for Static Analysis * Fixes Plugin Pass i18n Checks * Adds i18n check to Travis CI builds. * Adds additional i18n run scripts to package.json. * Internationalization Checking & Fixes * Fixes missing i18n translation in main plugin file. * Adds update POT file. * Enforces i18n checks on commit with GrumPHP. * Adds i18n check step to Travis CI builds. * Gitattributes for export exclusions * Fixes missing loaded settings property assignment. * Adds Support for IDP Settings as Defined Constants - Reads from defined constants on plugin bootstrap. - Disabled plugin settings fields when defined constants are used. - Prevents savings plugin settings that are using defined constants. * Adds Node/NPM Environment Requirements * Fixes GrumPHP Bin Directory Configuration * Updates GrumPHP for Required Features - Bumps Composer package PHP version to 7.3. - Updates GrumPHP configuration to new format. * Plugin Settings Page Updates Using Constants - Ensures that any available defined constants are loaded in place of any database stored settings as an override. * Composer Dependency Updates & Travis CI Caching Fix * Travis CI Build Composer Update Change * NPM Updates & NVM Version Lock * Fixes NPM Package Lock File for Node v12 * Updates NPM Package Dependencies * Updates Changelog & README Files With Relevant Changes * Fixes Localizaion on Error Output * Changes GrumPHP Configuration to Provide a Full PHPCS Report * Fixes Local Dev Setup to Activate Plugin by Default * Adds Contribution Guide and Issue & PR Templates (#222) * Fixes Support GitHub Issue Template (#223) * Fixes space/typo with Wiki link (#224) * Fixes invalid wp-env plugin configuration (#225) * Improve Local Dev Setup by Reducing Setup Commands (#226) * Improve Local Dev Setup by Reducing Setup Commands * Adds Code Owners Configuration for Pull Requests * Fixes Development Dependencies and Setup Scripts (#227) * Dev release/3.8 (#229) * Adds dev Branch to Travis CI Builds * Release Preparation Enhancements & Release Changes Co-authored-by: Jonathan Daggerhart <jonathan@daggerhart.com>isekai
parent
705b7716f1
commit
b3c7b70c13
@ -0,0 +1,24 @@
|
||||
# This file is for unifying the coding style for different editors and IDEs
|
||||
# editorconfig.org
|
||||
|
||||
# WordPress Coding Standards
|
||||
# https://make.wordpress.org/core/handbook/coding-standards/
|
||||
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
indent_style = tab
|
||||
|
||||
[*.yml,*.yml.dist]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[{*.txt,wp-config-sample.php}]
|
||||
end_of_line = crlf
|
@ -0,0 +1,35 @@
|
||||
# Set default behavior to automatically normalize line endings.
|
||||
* text=auto
|
||||
|
||||
# Force batch scripts to always use CRLF line endings so that if a repo is accessed
|
||||
# in Windows via a file share from Linux, the scripts will work.
|
||||
*.{cmd,[cC][mM][dD]} text eol=crlf
|
||||
*.{bat,[bB][aA][tT]} text eol=crlf
|
||||
|
||||
# Force bash scripts to always use LF line endings so that if a repo is accessed
|
||||
# in Unix via a file share from Windows, the scripts will work.
|
||||
*.sh text eol=lf
|
||||
|
||||
# Ignored directories during export.
|
||||
/.wordpress-org export-ignore
|
||||
/.github export-ignore
|
||||
/scripts export-ignore
|
||||
/tests export-ignore
|
||||
/tools export-ignore
|
||||
|
||||
# Ignored files during export.
|
||||
/.editorconfig export-ignore
|
||||
/.gitattributes export-ignore
|
||||
/.gitignore export-ignore
|
||||
/.travis.yml export-ignore
|
||||
/.wp-env.json export-ignore
|
||||
/composer.json export-ignore
|
||||
/composer.lock export-ignore
|
||||
/Gruntfile.js export-ignore
|
||||
/docker-compose.override.yml export-ignore
|
||||
/grumphp.yml.dist export-ignore
|
||||
/phpcs.xml.dist export-ignore
|
||||
/phpstan.neon.dist export-ignore
|
||||
/phpunit.xml.dist export-ignore
|
||||
/package.json export-ignore
|
||||
/package-lock.json export-ignore
|
@ -0,0 +1,2 @@
|
||||
# The default owners for everything in the repo.
|
||||
* @daggerhart @timnolte
|
@ -0,0 +1,37 @@
|
||||
# Contributing to OpenID Connect Generic Client ✨
|
||||
|
||||
This plugin provides security enhancements to WordPress, and your help making it even more awesome will be greatly appreciated :)
|
||||
|
||||
There are many ways to contribute to the project!
|
||||
|
||||
- [Translating strings into your language](https://translate.wordpress.org/projects/wp-plugins/daggerhart-openid-connect-generic/).
|
||||
- Answering open questions under the GitHub Issue Tracker (https://github.com/oidc-wp/openid-connect-generic/issues).
|
||||
- Testing open [issues](https://github.com/oidc-wp/openid-connect-generic/issues) or [pull requests](https://github.com/oidc-wp/openid-connect-generic/pulls) and sharing your findings in a comment.
|
||||
- Submitting fixes, improvements, and enhancements.
|
||||
- Disclose a security issue to our team.
|
||||
|
||||
If you wish to contribute code, please read the information in the sections below. Then [fork](https://help.github.com/articles/fork-a-repo/) the plugin, commit your changes, and [submit a pull request](https://help.github.com/articles/using-pull-requests/) 🎉
|
||||
|
||||
We use the `good first issue` label to mark issues that are suitable for new contributors. You can find all the issues with this label [here](https://github.com/oidc-wp/openid-connect-generic/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
|
||||
|
||||
OpenID Connect Generic Client is licensed under the GPLv2.0, and all contributions to the project will be released under the same license. You maintain copyright over any contribution you make, and by submitting a pull request, you are agreeing to release that contribution under the GPLv2.0 license.
|
||||
|
||||
## Getting started
|
||||
|
||||
- [How to set up the plugin development environment](https://github.com/oidc-wp/openid-connect-generic/wiki/How-to-setup-the-plugin-development-environment)
|
||||
|
||||
## Coding Guidelines and Development 🛠
|
||||
|
||||
- Ensure you stick to the [WordPress Coding Standards](https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/)
|
||||
- Run our build process described in the document on [How to setup the plugin development environment](https://github.com/oidc-wp/openid-connect-generic/wiki/How-to-setup-the-plugin-development-environment), it will install everything needed to do development on our plugin.
|
||||
- Whenever possible please fix pre-existing code standards errors in the files that you change. It is ok to skip that for larger files or complex fixes.
|
||||
- Ensure you use LF line endings in your code editor. Use [EditorConfig](http://editorconfig.org/) if your editor supports it so that indentation, line endings and other settings are auto configured.
|
||||
- When committing, reference your issue number (#1234) and include a note about the fix.
|
||||
- Ensure that your code supports the minimum supported versions of PHP and WordPress; this is shown at the top of the `readme.txt` file.
|
||||
- Push the changes to your fork and submit a pull request on the `dev` branch of the plugin repository.
|
||||
- Make sure to write good and detailed commit messages (see [this post](https://chris.beams.io/posts/git-commit/) for more on this) and follow all the applicable sections of the pull request template.
|
||||
- Please avoid modifying the changelog directly or updating the .pot files. These will be updated by the plugin team.
|
||||
|
||||
## Feature Requests 🚀
|
||||
|
||||
Feature requests can be [submitted to our issue tracker](https://github.com/oidc-wp/openid-connect-generic/issues/new?template=5-Feature-request.md). Be sure to include a description of the expected behavior and use case, and before submitting a request, please search for similar ones in the closed issues.
|
@ -0,0 +1,14 @@
|
||||
---
|
||||
name: "❓ Support Question"
|
||||
about: "Ask a general usage question \U0001F4AC."
|
||||
title: ''
|
||||
labels: 'help+wanted'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Review Wiki**
|
||||
Please be sure to check the [GitHub Wiki](https://github.com/oidc-wp/openid-connect-generic/wiki) to see if your question has already been answered.
|
||||
|
||||
**General usage questions**
|
||||
If your question hasn't been answered in the Wiki please be as descriptive as possible when asking your question.
|
@ -0,0 +1,37 @@
|
||||
---
|
||||
name: "\U0001F41E Bug report"
|
||||
about: Report a bug if something isn't working as expected in the plugin.
|
||||
title: ''
|
||||
labels: 'bug'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is. Please be as descriptive as possible; issues lacking detail, or for any other reason than to report a bug, may be closed without action.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Screenshots**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Isolating the problem (mark completed items with an [x]):**
|
||||
- [ ] I have deactivated other plugins and confirmed this bug occurs when only this plugin is active.
|
||||
- [ ] This bug happens with a default WordPress theme active.
|
||||
- [ ] I can reproduce this bug consistently using the steps above.
|
||||
|
||||
**WordPress Environment**
|
||||
- Website URL:
|
||||
- PHP Version:
|
||||
- WordPress Version:
|
||||
- Plugin Version:
|
||||
- Identity Provider:
|
||||
- Relevant Plugin Settings:
|
@ -0,0 +1,21 @@
|
||||
---
|
||||
name: "✨ New Enhancement"
|
||||
about: If you have an idea to improve an existing feature in the plugin or need something
|
||||
for development (such as a new hook) please let us know or submit a Pull Request!
|
||||
title: ''
|
||||
labels: 'enhancement'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
@ -0,0 +1,21 @@
|
||||
---
|
||||
name: "\U0001F680 Feature request"
|
||||
about: "Suggest a new feature \U0001F389 We'll consider building it if it receives
|
||||
sufficient interest! \U0001F44D"
|
||||
title: ''
|
||||
labels: 'enhancement'
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
@ -0,0 +1 @@
|
||||
blank_issues_enabled: false
|
@ -0,0 +1,33 @@
|
||||
### All Submissions:
|
||||
|
||||
* [ ] Have you followed the [plugin Contributing guideline](https://github.com/oidc-wp/openid-connect-generi/blob/dev/.github/CONTRIBUTING.md)?
|
||||
* [ ] Does your code follow the [WordPress' coding standards](https://make.wordpress.org/core/handbook/best-practices/coding-standards/)?
|
||||
* [ ] Have you checked to ensure there aren't other open [Pull Requests](../pulls) for the same update/change?
|
||||
|
||||
<!-- Mark completed items with an [x] -->
|
||||
|
||||
<!-- You can erase any parts of this template not applicable to your Pull Request. -->
|
||||
|
||||
### Changes proposed in this Pull Request:
|
||||
|
||||
<!-- Describe the changes made to this Pull Request and the reason for such changes. -->
|
||||
|
||||
Closes # .
|
||||
|
||||
### How to test the changes in this Pull Request:
|
||||
|
||||
1.
|
||||
2.
|
||||
3.
|
||||
|
||||
### Other information:
|
||||
|
||||
* [ ] Have you added an explanation of what your changes do and why you'd like us to include them?
|
||||
* [ ] Have you written new tests for your changes, as applicable?
|
||||
* [ ] Have you successfully run tests with your changes locally?
|
||||
|
||||
<!-- Mark completed items with an [x] -->
|
||||
|
||||
### Changelog entry
|
||||
|
||||
> Enter a summary of all changes on this Pull Request. This will appear in the changelog if accepted.
|
@ -1,2 +1,53 @@
|
||||
vendor/**/*
|
||||
composer.lock
|
||||
# Numerous always-ignore extensions
|
||||
*.diff
|
||||
*.err
|
||||
*.orig
|
||||
*.log
|
||||
*.rej
|
||||
*.swo
|
||||
*.swp
|
||||
*.vi
|
||||
*~
|
||||
*.sass-cache
|
||||
|
||||
# Local Development files/folders.
|
||||
.env
|
||||
.wp-env.override.json
|
||||
phpcs.xml
|
||||
phpstan.neon
|
||||
phpunit.xml
|
||||
|
||||
# OS or Editor folders
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.cache
|
||||
tags.*
|
||||
.project
|
||||
.settings
|
||||
.tmproj
|
||||
*.esproj
|
||||
nbproject
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
.idea
|
||||
clover.xml
|
||||
|
||||
# Dreamweaver added files
|
||||
_notes
|
||||
dwsync.xml
|
||||
|
||||
# Komodo
|
||||
*.komodoproject
|
||||
.komodotools
|
||||
|
||||
# Folders to ignore
|
||||
.hg
|
||||
.svn
|
||||
.CVS
|
||||
intermediate
|
||||
.idea
|
||||
cache
|
||||
node_modules
|
||||
vendor
|
||||
dist
|
||||
wordpress
|
||||
|
@ -0,0 +1,125 @@
|
||||
# Travis CI Configuration File
|
||||
|
||||
# Tell Travis CI which distro to use
|
||||
dist: trusty
|
||||
|
||||
sudo: false
|
||||
|
||||
# Tell Travis CI we're using PHP
|
||||
language: php
|
||||
|
||||
# Tell Travis CI which notifications to send
|
||||
notifications:
|
||||
email:
|
||||
on_success: never
|
||||
on_failure: change
|
||||
|
||||
# whitelist branches for the "push" build check
|
||||
branches:
|
||||
only:
|
||||
- dev
|
||||
- main
|
||||
- /^dev\-release\/.*$/
|
||||
- /^feature\/.*$/
|
||||
- /^fix\/.*$/
|
||||
|
||||
# Git clone depth
|
||||
# By default Travis CI clones repositories to a depth of 50 commits
|
||||
git:
|
||||
depth: 1
|
||||
|
||||
cache:
|
||||
directories:
|
||||
- $HOME/.composer/cache
|
||||
|
||||
# Define a matrix of additional build configurations
|
||||
# The versions listed above will automatically create our first configuration,
|
||||
# so it doesn't need to be re-defined below.
|
||||
matrix:
|
||||
fast_finish: true
|
||||
include:
|
||||
- name: Internationalization
|
||||
php: 7.3
|
||||
env: WP_MODE=single WP_VERSION=5.4.* I18N=1
|
||||
- name: Coding Standards
|
||||
php: 7.3
|
||||
env: WP_MODE=single WP_VERSION=5.4.* PHP_LINT=1 COVERAGE=1
|
||||
- name: Static Code Analysis
|
||||
php: 7.3
|
||||
env: WP_MODE=single WP_VERSION=5.4.* PHP_ANALYZE=1
|
||||
- name: Latest Stable
|
||||
php: 7.3
|
||||
env: WP_MODE=single WP_VERSION=5.4.* PHP_UNIT=1
|
||||
- name: Preferred Minimum requirements
|
||||
php: 7.2
|
||||
env: WP_MODE=single WP_VERSION=5.3.* PHP_UNIT=1
|
||||
- name: Minimum requirements
|
||||
php: 7.1
|
||||
env: WP_MODE=single WP_VERSION=5.2.* PHP_UNIT=1
|
||||
- name: Bleeding Edge
|
||||
php: 7.4
|
||||
env: WP_MODE=single WP_VERSION=dev-master PHP_UNIT=1
|
||||
- name: Multisite Compatibility
|
||||
php: 7.3
|
||||
env: WP_MODE=multi WP_VERSION=5.4.* PHP_UNIT=1
|
||||
allow_failures:
|
||||
- name: Bleeding Edge
|
||||
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- nodejs
|
||||
|
||||
before_install:
|
||||
- npm install -g npm@6.14
|
||||
- npm install -g grunt-cli
|
||||
- composer require "wordpress/wordpress:${WP_VERSION}" --dev --prefer-source --no-update
|
||||
|
||||
install:
|
||||
- composer update --prefer-source --no-interaction --optimize-autoloader
|
||||
- npm install
|
||||
|
||||
before_script:
|
||||
- export PATH="$HOME/.composer/vendor/bin:$PATH"
|
||||
# Setup WordPress coding standards
|
||||
- |
|
||||
if [[ "$PHP_LINT" == "1" ]]; then
|
||||
composer global require wp-coding-standards/wpcs
|
||||
fi
|
||||
# Setup unit testing environment
|
||||
- |
|
||||
if [[ "$PHP_UNIT" == "1" ]]; then
|
||||
# bash scripts/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
|
||||
if [[ $TRAVIS_PHP_VERSION == "7.4" ]]; then
|
||||
composer global require "phpunit/php-code-coverage=dev-master"
|
||||
composer global require "sebastian/global-state:dev-master"
|
||||
composer global require "phpunit/phpunit=dev-master"
|
||||
else
|
||||
composer global require "phpunit/phpunit=7.*"
|
||||
fi
|
||||
fi
|
||||
|
||||
script:
|
||||
- |
|
||||
if [[ "$I18N" == "1" ]]; then
|
||||
if [[ "$WP_MODE" == "single" ]]; then WP_MULTISITE=0 npm run i18n:check; fi
|
||||
fi
|
||||
- |
|
||||
if [[ "$PHP_LINT" == "1" ]]; then
|
||||
if [[ "$WP_MODE" == "single" ]]; then WP_MULTISITE=0 npm run lint; fi
|
||||
fi
|
||||
- |
|
||||
if [[ "$PHP_ANALYZE" == "1" ]]; then
|
||||
if [[ "$WP_MODE" == "single" ]]; then WP_MULTISITE=0 npm run analyze; fi
|
||||
fi
|
||||
- |
|
||||
if [[ "$PHP_UNIT" == "1" ]]; then
|
||||
if [[ "$WP_MODE" == "multi" ]]; then WP_MULTISITE=1 npm run test; fi
|
||||
if [[ "$WP_MODE" == "single" ]]; then WP_MULTISITE=0 npm run test; fi
|
||||
fi
|
||||
|
||||
after_success:
|
||||
- |
|
||||
if [[ "$COVERAGE" == "1" ]]; then
|
||||
bash <(curl -s https://codecov.io/bash)
|
||||
fi
|
@ -0,0 +1,17 @@
|
||||
{
|
||||
"core": "./wordpress/build",
|
||||
"plugins": [ "." ],
|
||||
"mappings": {
|
||||
"wp-content/mu-plugins": "./tools/local-env/mu-plugins"
|
||||
},
|
||||
"config": {
|
||||
"PHP_INI_MEMORY_LIMIT": "512M",
|
||||
"WP_MEMORY_LIMIT": "512M",
|
||||
"WP_DEBUG": true,
|
||||
"WP_DEBUG_LOG": true,
|
||||
"WP_DEBUG_DISPLAY": true,
|
||||
"SCRIPT_DEBUG": true,
|
||||
"SMTP_HOST": "mailhog",
|
||||
"SMTP_PORT": 1025
|
||||
}
|
||||
}
|
@ -0,0 +1,223 @@
|
||||
module.exports = function (grunt) {
|
||||
|
||||
require('load-grunt-tasks')(grunt);
|
||||
|
||||
// Project configuration.
|
||||
grunt.initConfig({
|
||||
pkg: grunt.file.readJSON('package.json'),
|
||||
|
||||
composerBin: 'vendor/bin',
|
||||
|
||||
shell: {
|
||||
phpcs: {
|
||||
options: {
|
||||
stdout: true
|
||||
},
|
||||
command: '<%= composerBin %>/phpcs'
|
||||
},
|
||||
|
||||
phpcbf: {
|
||||
options: {
|
||||
stdout: true
|
||||
},
|
||||
command: '<%= composerBin %>/phpcbf'
|
||||
},
|
||||
|
||||
phpstan: {
|
||||
options: {
|
||||
stdout: true
|
||||
},
|
||||
command: '<%= composerBin %>/phpstan analyze .'
|
||||
},
|
||||
|
||||
phpunit: {
|
||||
options: {
|
||||
stdout: true
|
||||
},
|
||||
command: '<%= composerBin %>/phpunit'
|
||||
},
|
||||
},
|
||||
|
||||
gitinfo: {
|
||||
commands: {
|
||||
'local.tag.current.name': ['name-rev', '--tags', '--name-only', 'HEAD'],
|
||||
'local.tag.current.nameLong': ['describe', '--tags', '--long']
|
||||
}
|
||||
},
|
||||
|
||||
clean: {
|
||||
main: ['dist'], //Clean up build folder
|
||||
i18n: ['languages/*.mo', 'languages/*.pot']
|
||||
},
|
||||
|
||||
copy: {
|
||||
// Copy the plugin to a versioned release directory
|
||||
main: {
|
||||
src: [
|
||||
'**',
|
||||
'!*.xml', '!*.log', //any config/log files
|
||||
'!node_modules/**', '!Gruntfile.js', '!package.json', '!package-lock.json', //npm/Grunt
|
||||
'!assets/**', //wp-org assets
|
||||
'!dist/**', //build directory
|
||||
'!.git/**', //version control
|
||||
'!tests/**', '!scripts/**', '!phpunit.xml', '!phpunit.xml.dist', //unit testing
|
||||
'!vendor/**', '!composer.lock', '!composer.phar', '!composer.json', //composer
|
||||
'!wordpress/**',
|
||||
'!.*', '!**/*~', //hidden files
|
||||
'!CONTRIBUTING.md',
|
||||
'!README.md',
|
||||
'!phpcs.xml', '!phpcs.xml.dist', '!phpstan.neon.dist', '!grumphp.yml.dist', // CodeSniffer Configuration.
|
||||
'!docker-compose.override.yml', // Local Docker Development configuration.
|
||||
'!codecov.yml', // Code coverage configuration.
|
||||
'!tools/**', // Local Development/Build tools configuration.
|
||||
],
|
||||
dest: 'dist/',
|
||||
options: {
|
||||
processContentExclude: ['**/*.{png,gif,jpg,ico,mo}'],
|
||||
processContent: function (content, srcpath) {
|
||||
if (srcpath == 'readme.txt' || srcpath == 'openid-connect-generic.php') {
|
||||
if (grunt.config.get('gitinfo').local.tag.current.name !== 'undefined') {
|
||||
content = content.replace('{{version}}', grunt.config.get('gitinfo').local.tag.current.name);
|
||||
} else {
|
||||
content = content.replace('{{version}}', grunt.config.get('gitinfo').local.tag.current.nameLong);
|
||||
}
|
||||
}
|
||||
return content;
|
||||
},
|
||||
},
|
||||
}
|
||||
},
|
||||
|
||||
addtextdomain: {
|
||||
options: {
|
||||
textdomain: 'daggerhart-openid-connect-generic', // Project text domain.
|
||||
},
|
||||
update_all_domains: {
|
||||
options: {
|
||||
updateDomains: true
|
||||
},
|
||||
src: ['*.php', '**/*.php', '!node_modules/**', '!tests/**', '!scripts/**', '!vendor/**', '!wordpress/**']
|
||||
},
|
||||
},
|
||||
|
||||
wp_readme_to_markdown: {
|
||||
dest: {
|
||||
files: {
|
||||
'README.md': 'readme.txt'
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
makepot: {
|
||||
target: {
|
||||
options: {
|
||||
domainPath: '/languages', // Where to save the POT file.
|
||||
exclude: [
|
||||
'node_modules/.*', //npm
|
||||
'assets/.*', //wp-org assets
|
||||
'dist/.*', //build directory
|
||||
'.git/.*', //version control
|
||||
'tests/.*', 'scripts/.*', //unit testing
|
||||
'vendor/.*', //composer
|
||||
'wordpress/.*',
|
||||
], // List of files or directories to ignore.
|
||||
mainFile: 'openid-connect-generic.php', // Main project file.
|
||||
potFilename: 'openid-connect-generic.pot', // Name of the POT file.
|
||||
potHeaders: {
|
||||
poedit: true, // Includes common Poedit headers.
|
||||
'report-msgid-bugs-to': 'https://github.com/daggerhart/openid-connect-generic/issues',
|
||||
'x-poedit-keywordslist': true // Include a list of all possible gettext functions.
|
||||
}, // Headers to add to the generated POT file.
|
||||
type: 'wp-plugin', // Type of project (wp-plugin or wp-theme).
|
||||
updateTimestamp: true, // Whether the POT-Creation-Date should be updated without other changes.
|
||||
updatePoFiles: true // Whether to update PO files in the same directory as the POT file.
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
po2mo: {
|
||||
plugin: {
|
||||
src: 'languages/*.po',
|
||||
expand: true
|
||||
}
|
||||
},
|
||||
|
||||
checkrepo: {
|
||||
deploy: {
|
||||
tagged: true, // Check that the last commit (HEAD) is tagged
|
||||
clean: true // Check that working directory is clean
|
||||
}
|
||||
},
|
||||
|
||||
checktextdomain: {
|
||||
options: {
|
||||
text_domain: 'daggerhart-openid-connect-generic',
|
||||
keywords: [
|
||||
'__:1,2d',
|
||||
'_e:1,2d',
|
||||
'_x:1,2c,3d',
|
||||
'esc_html__:1,2d',
|
||||
'esc_html_e:1,2d',
|
||||
'esc_html_x:1,2c,3d',
|
||||
'esc_attr__:1,2d',
|
||||
'esc_attr_e:1,2d',
|
||||
'esc_attr_x:1,2c,3d',
|
||||
'_ex:1,2c,3d',
|
||||
'_x:1,2c,3d',
|
||||
'_n:1,2,4d',
|
||||
'_nx:1,2,4c,5d',
|
||||
'_n_noop:1,2,3d',
|
||||
'_nx_noop:1,2,3c,4d'
|
||||
],
|
||||
},
|
||||
files: {
|
||||
src: [
|
||||
'**/*.php',
|
||||
'!node_modules/**',
|
||||
'!dist/**',
|
||||
'!tests/**',
|
||||
'!vendor/**',
|
||||
'!wordpress/**',
|
||||
'!*~',
|
||||
],
|
||||
expand: true,
|
||||
},
|
||||
},
|
||||
|
||||
// Bump version numbers
|
||||
version: {
|
||||
class: {
|
||||
options: {
|
||||
prefix: "const VERSION = '"
|
||||
},
|
||||
src: ['<%= pkg.name %>.php']
|
||||
},
|
||||
header: {
|
||||
options: {
|
||||
prefix: '\\* Version:\\s+'
|
||||
},
|
||||
src: ['<%= pkg.name %>.php']
|
||||
},
|
||||
readme: {
|
||||
options: {
|
||||
prefix: 'Stable tag:\\s+'
|
||||
},
|
||||
src: ['readme.txt']
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
grunt.registerTask('phpcs', ['shell:phpcs']);
|
||||
grunt.registerTask('phpcbf', ['shell:phpcbf']);
|
||||
grunt.registerTask('phpstan', ['shell:phpstan']);
|
||||
grunt.registerTask('phpunit', ['shell:phpunit']);
|
||||
grunt.registerTask('i18n', ['addtextdomain', 'makepot', 'po2mo']);
|
||||
grunt.registerTask('readme', ['wp_readme_to_markdown']);
|
||||
grunt.registerTask('test', ['checktextdomain']);
|
||||
grunt.registerTask('build', ['gitinfo', 'test', 'clean', 'i18n', 'readme', 'copy']);
|
||||
//grunt.registerTask( 'deploy', [ 'checkbranch:master', 'checkrepo', 'build' ] );
|
||||
grunt.registerTask('deploy', ['checkrepo', 'build']);
|
||||
|
||||
};
|
||||
|
@ -1,30 +1,102 @@
|
||||
{
|
||||
"name": "daggerhart/openid-connect-generic",
|
||||
"type": "wordpress-plugin",
|
||||
"license": "GPL-2.0-only",
|
||||
"description": "OpenID Connect generic WordPress plugin.",
|
||||
"homepage": "https://github.com/daggerhart/openid-connect-generic",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jonathan Daggerhart",
|
||||
"email": "jonathan@daggerhart.com",
|
||||
"homepage": "https://github.com/daggerhart"
|
||||
},
|
||||
{
|
||||
"name": "Tim Nolte",
|
||||
"email": "tim.nolte@ndigitals.com",
|
||||
"homepage": "https://github.com/timnolte"
|
||||
}
|
||||
],
|
||||
"keywords": [
|
||||
"wordpress",
|
||||
"openid"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/daggerhart/openid-connect-generic/issues"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.6.0",
|
||||
"composer/installers": "~1.0"
|
||||
}
|
||||
"name": "daggerhart/openid-connect-generic",
|
||||
"type": "wordpress-plugin",
|
||||
"license": "GPL-2.0-only",
|
||||
"description": "OpenID Connect generic WordPress plugin.",
|
||||
"homepage": "https://github.com/daggerhart/openid-connect-generic",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jonathan Daggerhart",
|
||||
"email": "jonathan@daggerhart.com",
|
||||
"homepage": "https://github.com/daggerhart"
|
||||
},
|
||||
{
|
||||
"name": "Tim Nolte",
|
||||
"email": "tim.nolte@ndigitals.com",
|
||||
"homepage": "https://github.com/timnolte"
|
||||
}
|
||||
],
|
||||
"keywords": [
|
||||
"wordpress",
|
||||
"openid"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/daggerhart/openid-connect-generic/issues"
|
||||
},
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "7.3"
|
||||
},
|
||||
"optimize-autoloader": true
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "git",
|
||||
"url": "https://github.com/wordpress/wordpress-develop"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">=7.1.0",
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"php": ">=7.1.0",
|
||||
"squizlabs/php_codesniffer": "^3.3",
|
||||
"wp-coding-standards/wpcs": "^2.2",
|
||||
"phpcompatibility/php-compatibility": "^9.0",
|
||||
"phpcompatibility/phpcompatibility-wp": "^2.1",
|
||||
"phpmd/phpmd": "^2.6",
|
||||
"phpunit/phpunit": "^7",
|
||||
"phpstan/phpstan": "*",
|
||||
"phpstan/extension-installer": "^1.0",
|
||||
"szepeviktor/phpstan-wordpress": "*",
|
||||
"php-stubs/wordpress-stubs": "~5.4.2",
|
||||
"roave/security-advisories": "dev-master",
|
||||
"mnsami/composer-custom-directory-installer": "~1.0",
|
||||
"wordpress/wordpress": "~5.4.2",
|
||||
"dealerdirect/phpcodesniffer-composer-installer": "~0.6",
|
||||
"brain/monkey": "^2.4",
|
||||
"mockery/mockery": "^1.3",
|
||||
"phpro/grumphp": "~0.20",
|
||||
"sensiolabs/security-checker": "^5.0",
|
||||
"phpstan/phpstan-deprecation-rules": "^0.12"
|
||||
},
|
||||
"autoload-dev": {
|
||||
"classmap": [
|
||||
"wordpress/src/"
|
||||
]
|
||||
},
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"openid-connect-generic.php",
|
||||
"includes/openid-connect-generic-client.php",
|
||||
"includes/openid-connect-generic-client-wrapper.php",
|
||||
"includes/openid-connect-generic-login-form.php",
|
||||
"includes/openid-connect-generic-option-logger.php",
|
||||
"includes/openid-connect-generic-option-settings.php",
|
||||
"includes/openid-connect-generic-settings-page.php"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"install-codestandards": [
|
||||
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
|
||||
],
|
||||
"post-install-cmd": [
|
||||
"@install-codestandards"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@install-codestandards"
|
||||
],
|
||||
"phpcs": "vendor/bin/phpcs",
|
||||
"phpcbf": "vendor/bin/phpcbf",
|
||||
"phpstan": "\"vendor/bin/phpstan\""
|
||||
},
|
||||
"extra": {
|
||||
"installer-paths": {
|
||||
"{$name}": [
|
||||
"wordpress/wordpress"
|
||||
]
|
||||
},
|
||||
"phpcodesniffer-search-depth": 5
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,75 @@
|
||||
version: '3.7'
|
||||
services:
|
||||
wordpress-develop:
|
||||
depends_on:
|
||||
- php
|
||||
- mailhog
|
||||
|
||||
environment:
|
||||
LOCAL_DIR: ${LOCAL_DIR-src}
|
||||
SMTP_HOST: ${SMTP_HOST-mailhog}
|
||||
SMTP_PORT: ${SMTP_PORT-1025}
|
||||
|
||||
volumes:
|
||||
- ../tools/local-env/default.template:/etc/nginx/conf.d/default.template
|
||||
- ..:/var/www/${LOCAL_DIR-src}/wp-content/plugins/daggerhart-openid-connect-generic
|
||||
- ../tools/local-env/mu-plugins:/var/www/${LOCAL_DIR-src}/wp-content/mu-plugins
|
||||
|
||||
# Load our config file, substituning environment variables into the config.
|
||||
command: /bin/sh -c "envsubst '$$LOCAL_DIR $$LOCAL_HOSTNAME' < /etc/nginx/conf.d/default.template > /etc/nginx/conf.d/default.conf && exec nginx -g 'daemon off;'"
|
||||
|
||||
php:
|
||||
environment:
|
||||
LOCAL_PHP_XDEBUG: ${LOCAL_PHP_XDEBUG-false}
|
||||
LOCAL_PHP_MEMCACHED: ${LOCAL_PHP_MEMCACHED-false}
|
||||
PHP_FPM_UID: ${PHP_FPM_UID-1000}
|
||||
PHP_FPM_GID: ${PHP_FPM_GID-1000}
|
||||
SMTP_HOST: ${SMTP_HOST-mailhog}
|
||||
SMTP_PORT: ${SMTP_PORT-1025}
|
||||
|
||||
volumes:
|
||||
- ..:/var/www/${LOCAL_DIR-src}/wp-content/plugins/daggerhart-openid-connect-generic/
|
||||
- ../tools/local-env/mu-plugins:/var/www/${LOCAL_DIR-src}/wp-content/mu-plugins
|
||||
|
||||
cli:
|
||||
environment:
|
||||
LOCAL_PHP_XDEBUG: ${LOCAL_PHP_XDEBUG-false}
|
||||
LOCAL_PHP_MEMCACHED: ${LOCAL_PHP_MEMCACHED-false}
|
||||
PHP_FPM_UID: ${PHP_FPM_UID-1000}
|
||||
PHP_FPM_GID: ${PHP_FPM_GID-1000}
|
||||
SMTP_HOST: ${SMTP_HOST-mailhog}
|
||||
SMTP_PORT: ${SMTP_PORT-1025}
|
||||
|
||||
volumes:
|
||||
- ..:/var/www/${LOCAL_DIR-src}/wp-content/plugins/daggerhart-openid-connect-generic/
|
||||
- ../tools/local-env/mu-plugins:/var/www/${LOCAL_DIR-src}/wp-content/mu-plugins
|
||||
|
||||
phpunit:
|
||||
environment:
|
||||
LOCAL_PHP_XDEBUG: ${LOCAL_PHP_XDEBUG-false}
|
||||
LOCAL_PHP_MEMCACHED: ${LOCAL_PHP_MEMCACHED-false}
|
||||
LOCAL_DIR: ${LOCAL_DIR-src}
|
||||
WP_MULTISITE: ${WP_MULTISITE-false}
|
||||
PHP_FPM_UID: ${PHP_FPM_UID-1000}
|
||||
PHP_FPM_GID: ${PHP_FPM_GID-1000}
|
||||
TRAVIS_BRANCH: ${TRAVIS_BRANCH-false}
|
||||
TRAVIS_PULL_REQUEST: ${TRAVIS_PULL_REQUEST-false}
|
||||
SMTP_HOST: ${SMTP_HOST-mailhog}
|
||||
SMTP_PORT: ${SMTP_PORT-1025}
|
||||
|
||||
volumes:
|
||||
- ..:/var/www/${LOCAL_DIR-src}/wp-content/plugins/daggerhart-openid-connect-generic/
|
||||
- ../tools/local-env/mu-plugins:/var/www/${LOCAL_DIR-src}/wp-content/mu-plugins
|
||||
|
||||
## SMTP Server + Web Interface for viewing and testing emails during development.
|
||||
mailhog:
|
||||
image: mailhog/mailhog
|
||||
|
||||
restart: always
|
||||
|
||||
networks:
|
||||
- wpdevnet
|
||||
|
||||
ports:
|
||||
- "${MAILHOG_PORT:-8025}:8025"
|
||||
- "${SMTP_PORT:-1025}:1025"
|
@ -0,0 +1,52 @@
|
||||
# grumphp.yml
|
||||
grumphp:
|
||||
hide_circumvention_tip: true
|
||||
stop_on_failure: true
|
||||
process_timeout: 120
|
||||
parallel:
|
||||
enabled: true
|
||||
max_workers: 32
|
||||
fixer:
|
||||
enabled: false
|
||||
fix_by_default: false
|
||||
environment:
|
||||
variables:
|
||||
GRUMPHP_BIN_DIR: 'vendor/bin'
|
||||
paths:
|
||||
- 'node_modules/.bin'
|
||||
tasks:
|
||||
git_blacklist:
|
||||
keywords:
|
||||
- 'wp_die('
|
||||
- 'die('
|
||||
git_branch_name:
|
||||
blacklist:
|
||||
- 'main'
|
||||
- 'master'
|
||||
- 'dev*'
|
||||
allow_detached_head: false
|
||||
git_commit_message:
|
||||
allow_empty_message: false
|
||||
enforce_capitalized_subject: true
|
||||
enforce_no_subject_punctuations: true
|
||||
enforce_no_subject_trailing_period: true
|
||||
npm_script:
|
||||
script: 'i18n:check'
|
||||
is_run_task: true
|
||||
triggered_by: [php]
|
||||
metadata:
|
||||
label: 'i18n Check'
|
||||
phpcs:
|
||||
standard: './phpcs.xml.dist'
|
||||
report: 'full'
|
||||
ignore_patterns:
|
||||
- '/^assets\/(.*)/'
|
||||
triggered_by: [php]
|
||||
phpstan:
|
||||
configuration: './phpstan.neon.dist'
|
||||
level: 5
|
||||
ignore_patterns:
|
||||
- '/^assets\/(.*)/'
|
||||
memory_limit: '-1'
|
||||
triggered_by: [php]
|
||||
securitychecker: ~
|
File diff suppressed because it is too large
Load Diff
@ -1,60 +1,207 @@
|
||||
<?php
|
||||
/**
|
||||
* Class OpenId_Connect_Generic_Option_Settings
|
||||
* WordPress options handling class.
|
||||
*
|
||||
* @package OpenID_Connect_Generic
|
||||
* @category Settings
|
||||
* @author Jonathan Daggerhart <jonathan@daggerhart.com>
|
||||
* @copyright 2015-2020 daggerhart
|
||||
* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
|
||||
*/
|
||||
|
||||
/**
|
||||
* OpenId_Connect_Generic_Option_Settings class.
|
||||
*
|
||||
* WordPress options handling.
|
||||
*
|
||||
* @package OpenID_Connect_Generic
|
||||
* @category Settings
|
||||
*
|
||||
* Legacy Settings:
|
||||
*
|
||||
* @property string $ep_login The login endpoint.
|
||||
* @property string $ep_token The token endpoint.
|
||||
* @property string $ep_userinfo The userinfo endpoint.
|
||||
*
|
||||
* OAuth Client Settings:
|
||||
*
|
||||
* @property string $login_type How the client (login form) should provide login options.
|
||||
* @property string $client_id The ID the client will be recognized as when connecting the to Identity provider server.
|
||||
* @property string $client_secret The secret key the IDP server expects from the client.
|
||||
* @property string $scope The list of scopes this client should access.
|
||||
* @property string $endpoint_login The IDP authorization endpoint URL.
|
||||
* @property string $endpoint_userinfo The IDP User information endpoint URL.
|
||||
* @property string $endpoint_token The IDP token validation endpoint URL.
|
||||
* @property string $endpoint_end_session The IDP logout endpoint URL.
|
||||
*
|
||||
* Non-standard Settings:
|
||||
*
|
||||
* @property bool $no_sslverify The flag to enable/disable SSL verification during authorization.
|
||||
* @property int $http_request_timeout The timeout for requests made to the IDP. Default value is 5.
|
||||
* @property string $identity_key The key in the user claim array to find the user's identification data.
|
||||
* @property string $nickname_key The key in the user claim array to find the user's nickname.
|
||||
* @property string $email_format The key(s) in the user claim array to formulate the user's email address.
|
||||
* @property string $displayname_format The key(s) in the user claim array to formulate the user's display name.
|
||||
* @property bool $identify_with_username The flag which indicates how the user's identity will be determined.
|
||||
* @property int $state_time_limit The valid time limit of the state, in seconds. Defaults to 180 seconds.
|
||||
*
|
||||
* Plugin Settings:
|
||||
*
|
||||
* @property bool $enforce_privacy The flag to indicates whether a user us required to be authenticated to access the site.
|
||||
* @property bool $alternate_redirect_uri The flag to indicate whether to use the alternative redirect URI.
|
||||
* @property bool $token_refresh_enable The flag whether to support refresh tokens by IDPs.
|
||||
* @property bool $link_existing_users The flag to indicate whether to link to existing WordPress-only accounts or greturn an error.
|
||||
* @property bool $create_if_does_not_exist The flag to indicate whether to create new users or not.
|
||||
* @property bool $redirect_user_back The flag to indicate whether to redirect the user back to the page on which they started.
|
||||
* @property bool $redirect_on_logout The flag to indicate whether to redirect to the login screen on session expiration.
|
||||
* @property bool $enable_logging The flag to enable/disable logging.
|
||||
* @property int $log_limit The maximum number of log entries to keep.
|
||||
*/
|
||||
class OpenID_Connect_Generic_Option_Settings {
|
||||
|
||||
// wp option name/key
|
||||
/**
|
||||
* WordPress option name/key.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
private $option_name;
|
||||
|
||||
// stored option values array
|
||||
/**
|
||||
* Stored option values array.
|
||||
*
|
||||
* @var array<mixed>
|
||||
*/
|
||||
private $values;
|
||||
|
||||
// default plugin settings values
|
||||
/**
|
||||
* Default plugin settings values.
|
||||
*
|
||||
* @var array<mixed>
|
||||
*/
|
||||
private $default_settings;
|
||||
|
||||
/**
|
||||
* @param $option_name
|
||||
* @param array $default_settings
|
||||
* @param bool|TRUE $granular_defaults
|
||||
* List of settings that can be defined by environment variables.
|
||||
*
|
||||
* @var array<string,string>
|
||||
*/
|
||||
function __construct( $option_name, $default_settings = array(), $granular_defaults = true ){
|
||||
private $environment_settings = array(
|
||||
'client_id' => 'OIDC_CLIENT_ID',
|
||||
'client_secret' => 'OIDC_CLIENT_SECRET',
|
||||
'endpoint_login' => 'OIDC_ENDPOINT_LOGIN_URL',
|
||||
'endpoint_userinfo' => 'OIDC_ENDPOINT_USERINFO_URL',
|
||||
'endpoint_token' => 'OIDC_ENDPOINT_TOKEN_URL',
|
||||
'endpoint_end_session' => 'OIDC_ENDPOINT_LOGOUT_URL',
|
||||
);
|
||||
|
||||
/**
|
||||
* The class constructor.
|
||||
*
|
||||
* @param string $option_name The option name/key.
|
||||
* @param array<mixed> $default_settings The default plugin settings values.
|
||||
* @param bool $granular_defaults The granular defaults.
|
||||
*/
|
||||
function __construct( $option_name, $default_settings = array(), $granular_defaults = true ) {
|
||||
$this->option_name = $option_name;
|
||||
$this->default_settings = $default_settings;
|
||||
$this->values = get_option( $this->option_name, $this->default_settings );
|
||||
$this->values = array();
|
||||
|
||||
if ( ! empty( $this->option_name ) ) {
|
||||
$this->values = (array) get_option( $this->option_name, $this->default_settings );
|
||||
}
|
||||
|
||||
// For each defined environment variable/constant be sure the settings key is set.
|
||||
foreach ( $this->environment_settings as $key => $constant ) {
|
||||
if ( defined( $constant ) ) {
|
||||
$this->__set( $key, constant( $constant ) );
|
||||
}
|
||||
}
|
||||
|
||||
if ( $granular_defaults ) {
|
||||
$this->values = array_replace_recursive( $this->default_settings, $this->values );
|
||||
}
|
||||
}
|
||||
|
||||
function __get( $key ){
|
||||
/**
|
||||
* Magic getter for settings.
|
||||
*
|
||||
* @param string $key The array key/option name.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
function __get( $key ) {
|
||||
if ( isset( $this->values[ $key ] ) ) {
|
||||
return $this->values[ $key ];
|
||||
}
|
||||
}
|
||||
|
||||
function __set( $key, $value ){
|
||||
/**
|
||||
* Magic setter for settings.
|
||||
*
|
||||
* @param string $key The array key/option name.
|
||||
* @param mixed $value The option value.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function __set( $key, $value ) {
|
||||
$this->values[ $key ] = $value;
|
||||
}
|
||||
|
||||
function __isset( $key ){
|
||||
/**
|
||||
* Magic method to check is an attribute isset.
|
||||
*
|
||||
* @param string $key The array key/option name.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function __isset( $key ) {
|
||||
return isset( $this->values[ $key ] );
|
||||
}
|
||||
|
||||
function __unset( $key ){
|
||||
unset( $this->values[ $key ]);
|
||||
/**
|
||||
* Magic method to clear an attribute.
|
||||
*
|
||||
* @param string $key The array key/option name.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function __unset( $key ) {
|
||||
unset( $this->values[ $key ] );
|
||||
}
|
||||
|
||||
function get_values(){
|
||||
/**
|
||||
* Get the plugin settings array.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function get_values() {
|
||||
return $this->values;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the plugin WordPress options name.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function get_option_name() {
|
||||
return $this->option_name;
|
||||
}
|
||||
|
||||
function save(){
|
||||
/**
|
||||
* Save the plugin options to the WordPress options table.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function save() {
|
||||
|
||||
// For each defined environment variable/constant be sure it isn't saved to the database.
|
||||
foreach ( $this->environment_settings as $key => $constant ) {
|
||||
if ( defined( $constant ) ) {
|
||||
$this->__unset( $key );
|
||||
}
|
||||
}
|
||||
|
||||
update_option( $this->option_name, $this->values );
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,500 @@
|
||||
# Copyright (C) 2020 daggerhart
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenID Connect Generic 3.7.1\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/daggerhart/openid-connect-generic/issues\n"
|
||||
"POT-Creation-Date: 2020-08-29 04:30:04+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n 1.0.3\n"
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:197
|
||||
msgid "Session expired. Please login again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:432
|
||||
msgid "User identity is not linked to an existing WordPress user."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:478
|
||||
msgid "Invalid user."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:597
|
||||
msgid "No appropriate username found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:604
|
||||
msgid "Username %1$s could not be transliterated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:608
|
||||
msgid "Username %1$s could not be normalized."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:641
|
||||
msgid "No nickname found in user claim using key: %1$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:668
|
||||
msgid "User claim incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:770
|
||||
msgid "Bad user claim result."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:825
|
||||
msgid "Can not authorize."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client-wrapper.php:844
|
||||
msgid "Failed user creation."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:179
|
||||
msgid "Missing state."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:183
|
||||
msgid "Invalid state."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:198
|
||||
msgid "Missing authentication code."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:237
|
||||
msgid "Request for authentication token failed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:268
|
||||
msgid "Refresh token failed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:283
|
||||
msgid "Missing token body."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:291
|
||||
msgid "Invalid token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:342
|
||||
msgid "Request for userinfo failed."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:417
|
||||
msgid "No identity token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:424
|
||||
msgid "Missing identity token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:451
|
||||
msgid "Bad ID token claim."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:456
|
||||
msgid "No subject identity."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:475
|
||||
msgid "Bad user claim."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:495
|
||||
msgid "Invalid user claim."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:500
|
||||
msgid "Error from the IDP."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:509
|
||||
msgid "Incorrect user claim."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-client.php:516
|
||||
msgid "Unauthorized access."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-login-form.php:156
|
||||
msgid "ERROR (%1$s)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-login-form.php:172
|
||||
msgid "Login with OpenID Connect"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-option-logger.php:265
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-option-logger.php:269
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-option-logger.php:273
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-option-logger.php:277
|
||||
msgid "URI "
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:108
|
||||
msgid "OpenID Connect - Generic Client"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:109
|
||||
msgid "OpenID Connect Client"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:133
|
||||
msgid "Client Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:140
|
||||
msgid "WordPress User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:147
|
||||
msgid "Authorization Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:154
|
||||
msgid "Log Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:212
|
||||
msgid "Login Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:213
|
||||
msgid "Select how the client (login form) should provide login options."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:216
|
||||
msgid "OpenID Connect button on login form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:217
|
||||
msgid "Auto Login - SSO"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:222
|
||||
msgid "Client ID"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:223
|
||||
msgid ""
|
||||
"The ID this client will be recognized as when connecting the to Identity "
|
||||
"provider server."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:229
|
||||
msgid "Client Secret Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:230
|
||||
msgid ""
|
||||
"Arbitrary secret key the server expects from this client. Can be anything, "
|
||||
"but should be very unique."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:235
|
||||
msgid "OpenID Scope"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:236
|
||||
msgid "Space separated list of scopes this client should access."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:242
|
||||
msgid "Login Endpoint URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:243
|
||||
msgid "Identify provider authorization endpoint."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:249
|
||||
msgid "Userinfo Endpoint URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:250
|
||||
msgid "Identify provider User information endpoint."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:256
|
||||
msgid "Token Validation Endpoint URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:257
|
||||
msgid "Identify provider token endpoint."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:263
|
||||
msgid "End Session Endpoint URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:264
|
||||
msgid "Identify provider logout endpoint."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:270
|
||||
msgid "Identity Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:271
|
||||
msgid ""
|
||||
"Where in the user claim array to find the user's identification data. "
|
||||
"Possible standard values: preferred_username, name, or sub. If you're "
|
||||
"having trouble, use \"sub\"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:277
|
||||
msgid "Disable SSL Verify"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:278
|
||||
msgid ""
|
||||
"Do not require SSL verification during authorization. The OAuth extension "
|
||||
"uses curl to make the request. By default CURL will generally verify the "
|
||||
"SSL certificate to see if its valid an issued by an accepted CA. This "
|
||||
"setting disabled that verification.%1$sNot recommended for production "
|
||||
"sites.%2$s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:283
|
||||
msgid "HTTP Request Timeout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:284
|
||||
msgid "Set the timeout for requests made to the IDP. Default value is 5."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:290
|
||||
msgid "Enforce Privacy"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:291
|
||||
msgid "Require users be logged in to see the site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:296
|
||||
msgid "Alternate Redirect URI"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:297
|
||||
msgid ""
|
||||
"Provide an alternative redirect route. Useful if your server is causing "
|
||||
"issues with the default admin-ajax method. You must flush rewrite rules "
|
||||
"after changing this setting. This can be done by saving the Permalinks "
|
||||
"settings page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:302
|
||||
msgid "Nickname Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:303
|
||||
msgid ""
|
||||
"Where in the user claim array to find the user's nickname. Possible "
|
||||
"standard values: preferred_username, name, or sub."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:309
|
||||
msgid "Email Formatting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:310
|
||||
msgid ""
|
||||
"String from which the user's email address is built. Specify \"{email}\" as "
|
||||
"long as the user claim contains an email claim."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:316
|
||||
msgid "Display Name Formatting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:317
|
||||
msgid "String from which the user's display name is built."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:323
|
||||
msgid "Identify with User Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:324
|
||||
msgid ""
|
||||
"If checked, the user's identity will be determined by the user name instead "
|
||||
"of the email address."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:329
|
||||
msgid "State time limit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:330
|
||||
msgid "State valid time in seconds. Defaults to 180"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:335
|
||||
msgid "Enable Refresh Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:336
|
||||
msgid ""
|
||||
"If checked, support refresh tokens used to obtain access tokens from "
|
||||
"supported IDPs."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:341
|
||||
msgid "Link Existing Users"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:342
|
||||
msgid ""
|
||||
"If a WordPress account already exists with the same identity as a "
|
||||
"newly-authenticated user over OpenID Connect, login as that user instead of "
|
||||
"generating an error."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:347
|
||||
msgid "Create user if does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:348
|
||||
msgid ""
|
||||
"If the user identity is not link to an existing Wordpress user, it is "
|
||||
"created. If this setting is not enabled and if the user authenticates with "
|
||||
"an account which is not link to an existing Wordpress user then the "
|
||||
"authentication failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:353
|
||||
msgid "Redirect Back to Origin Page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:354
|
||||
msgid ""
|
||||
"After a successful OpenID Connect authentication, this will redirect the "
|
||||
"user back to the page on which they clicked the OpenID Connect login "
|
||||
"button. This will cause the login process to proceed in a traditional "
|
||||
"WordPress fashion. For example, users logging in through the default "
|
||||
"wp-login.php page would end up on the WordPress Dashboard and users logging "
|
||||
"in through the WooCommerce \"My Account\" page would end up on their "
|
||||
"account page."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:359
|
||||
msgid "Redirect to the login screen when session is expired"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:360
|
||||
msgid ""
|
||||
"When enabled, this will automatically redirect the user back to the "
|
||||
"WordPress login page if their access token has expired."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:365
|
||||
msgid "Enable Logging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:366
|
||||
msgid "Very simple log messages for debugging purposes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:371
|
||||
msgid "Log Limit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:372
|
||||
msgid ""
|
||||
"Number of items to keep in the log. These logs are stored as an option in "
|
||||
"the database, so space is limited."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:432
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:435
|
||||
msgid "Redirect URI"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:439
|
||||
msgid "Login Button Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:443
|
||||
msgid "Authentication URL Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:448
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:527
|
||||
msgid "Example"
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:540
|
||||
msgid "Enter your OpenID Connect identity provider settings."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:549
|
||||
msgid "Modify the interaction between OpenID Connect and WordPress users."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:558
|
||||
msgid "Control the authorization mechanics of the site."
|
||||
msgstr ""
|
||||
|
||||
#: includes/openid-connect-generic-settings-page.php:567
|
||||
msgid "Log information about login attempts through OpenID Connect Generic."
|
||||
msgstr ""
|
||||
|
||||
#: openid-connect-generic.php:200
|
||||
msgid "Private site"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "OpenID Connect Generic"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/daggerhart/openid-connect-generic"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Connect to an OpenID Connect generic client using Authorization Code Flow."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "daggerhart"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.daggerhart.com"
|
||||
msgstr ""
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,79 @@
|
||||
{
|
||||
"name": "openid-connect-generic",
|
||||
"version": "3.8.0",
|
||||
"description": "OpenID Connect generic WordPress plugin.",
|
||||
"main": "Gruntfile.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/daggerhart/openid-connect-generic"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress",
|
||||
"openid"
|
||||
],
|
||||
"author": "Jonathan Daggerhart",
|
||||
"license": "GPL-2.0-only",
|
||||
"bugs": {
|
||||
"url": "https://github.com/daggerhart/openid-connect-generic/issues"
|
||||
},
|
||||
"homepage": "https://github.com/daggerhart/openid-connect-generic#readme",
|
||||
"dependencies": {
|
||||
"dev-require": "^0.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.18.3",
|
||||
"npm": "6.14.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@floatwork/grunt-po2mo": "^0.3.0",
|
||||
"@ndigitals/grunt-checkrepo": "^0.2.0",
|
||||
"@wordpress/env": "^1.6.0",
|
||||
"@wordpress/scripts": "12.2.0",
|
||||
"check-node-version": "^4.0.3",
|
||||
"grunt": "1.3.0",
|
||||
"grunt-checkbranch": "^1.0.4",
|
||||
"grunt-checktextdomain": "^1.0.1",
|
||||
"grunt-cli": "^1.3.2",
|
||||
"grunt-contrib-clean": "^2.0.0",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-gitinfo": "^0.1.9",
|
||||
"grunt-shell": "^2.1.0",
|
||||
"grunt-version": "2.0.0",
|
||||
"grunt-wp-i18n": "^1.0.3",
|
||||
"grunt-wp-readme-to-markdown": "^2.0.0",
|
||||
"load-grunt-tasks": "^3.5",
|
||||
"node": "^12.18.3",
|
||||
"npm": "^6.14.8",
|
||||
"puppeteer": "^1.20.0",
|
||||
"typescript": "^3.9.7"
|
||||
},
|
||||
"wp-env": {
|
||||
"plugin-dir": "daggerhart-openid-connect-generic",
|
||||
"plugin-name": "OpenID Connect Generic",
|
||||
"docker-template": "./docker-compose.override.yml",
|
||||
"welcome-build-command": "npm start"
|
||||
},
|
||||
"scripts": {
|
||||
"setup": "composer install && npm install && cd wordpress && npm install && npm run build && cd .. && composer install --optimize-autoloader",
|
||||
"start": "wp-env start",
|
||||
"stop": "wp-env stop",
|
||||
"restart": "npm run wp-env stop && npm run wp-env start",
|
||||
"grunt": "node_modules/.bin/grunt",
|
||||
"test": "npm run grunt test",
|
||||
"build": "npm run grunt build",
|
||||
"version": "npm run grunt version",
|
||||
"version:bump": "npm version --no-git-tag-version",
|
||||
"check:engines": "wp-scripts check-engines",
|
||||
"check:licenses": "wp-scripts check-licenses",
|
||||
"wp-env": "wp-env",
|
||||
"wp": "wp-env run cli wp",
|
||||
"i18n:check": "npm run grunt checktextdomain",
|
||||
"i18n:make": "npm run grunt i18n",
|
||||
"i18n:make:cli": "wp-env run cli wp i18n make-pot . languages/ --slug=daggerhart-openid-connect-generic --include=openid-connect-generic.php,includes",
|
||||
"lint": "npm run lint:php",
|
||||
"lint:php": "vendor/bin/phpcs --report=full .",
|
||||
"lint:php:fix": "vendor/bin/phpcbf .",
|
||||
"analyze": "npm run analyze:php",
|
||||
"analyze:php": "vendor/bin/phpstan analyze ."
|
||||
}
|
||||
}
|
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0"?>
|
||||
<ruleset name="WordPress Coding Standards for Plugins">
|
||||
<description>Generally-applicable sniffs for WordPress plugins</description>
|
||||
|
||||
<rule ref="WordPress-Core">
|
||||
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
|
||||
<exclude name="WordPress.Files.FileName.InvalidClassFileName" />
|
||||
</rule>
|
||||
<rule ref="WordPress-Docs" />
|
||||
|
||||
<!-- Check all PHP files in directory tree by default. -->
|
||||
<arg name="basepath" value="." />
|
||||
<arg name="extensions" value="php" />
|
||||
<arg name="report" value="summary" />
|
||||
<!-- Show colors. -->
|
||||
<arg name="colors" />
|
||||
<!-- Show progress. -->
|
||||
<arg value="p" />
|
||||
<arg value="n" />
|
||||
|
||||
<file>.</file>
|
||||
|
||||
<!-- Show sniff codes in all reports -->
|
||||
<arg value="s"/>
|
||||
|
||||
<exclude-pattern>*/dist/*</exclude-pattern>
|
||||
<exclude-pattern>*/node_modules/*</exclude-pattern>
|
||||
<exclude-pattern>*/tests/*</exclude-pattern>
|
||||
<exclude-pattern>*/tools/*</exclude-pattern>
|
||||
<exclude-pattern>*/vendor/*</exclude-pattern>
|
||||
<exclude-pattern>*/wordpress/*</exclude-pattern>
|
||||
</ruleset>
|
@ -0,0 +1,51 @@
|
||||
#$ composer update --optimize-autoloader
|
||||
#$ vendor/bin/phpstan analyze
|
||||
|
||||
includes:
|
||||
# @see https://github.com/phpstan/phpstan-src/blob/master/conf/bleedingEdge.neon
|
||||
- phar://phpstan.phar/conf/bleedingEdge.neon
|
||||
# Include this extension
|
||||
# - vendor/szepeviktor/phpstan-wordpress/extension.neon
|
||||
parameters:
|
||||
level: 5
|
||||
inferPrivatePropertyTypeFromConstructor: true
|
||||
bootstrapFiles:
|
||||
- tests/phpstan-bootstrap.php
|
||||
# autoload_files:
|
||||
# Missing constants, function and class stubs
|
||||
# - tests/phpstan/bootstrap.php
|
||||
# Plugin stubs
|
||||
# - tests/phpstan/PLUGIN-stubs.php
|
||||
# Procedural code
|
||||
# - myplugin-functions.php
|
||||
# autoload_directories:
|
||||
# - inc/
|
||||
paths:
|
||||
- includes/
|
||||
- ./
|
||||
excludes_analyse:
|
||||
- node_modules/
|
||||
- scripts/
|
||||
- tests/
|
||||
- tools/
|
||||
- vendor/
|
||||
- wordpress/
|
||||
# scanFiles:
|
||||
# - includes/class.php
|
||||
scanDirectories:
|
||||
- wordpress/src/
|
||||
ignoreErrors:
|
||||
# Uses func_get_args()
|
||||
- '#^Function apply_filters(_ref_array)? invoked with [34567] parameters, 2 required\.$#'
|
||||
# Fixed in WordPress 5.3
|
||||
# - '#^Function do_action(_ref_array)? invoked with [3456] parameters, 1-2 required\.$#'
|
||||
# - '#^Function current_user_can invoked with 2 parameters, 1 required\.$#'
|
||||
# - '#^Function add_query_arg invoked with [123] parameters?, 0 required\.$#'
|
||||
# - '#^Function wp_sprintf invoked with [23456] parameters, 1 required\.$#'
|
||||
# - '#^Function add_post_type_support invoked with [345] parameters, 2 required\.$#'
|
||||
# - '#^Function ((get|add)_theme_support|current_theme_supports) invoked with [2345] parameters, 1 required\.$#'
|
||||
# https://core.trac.wordpress.org/ticket/43304
|
||||
# - '/^Parameter #2 \$deprecated of function load_plugin_textdomain expects string, false given\.$/'
|
||||
# WP-CLI accepts a class as callable
|
||||
# - '/^Parameter #2 \$callable of static method WP_CLI::add_command\(\) expects callable\(\): mixed, \S+ given\.$/'
|
||||
# Please consider commenting ignores: issue URL or reason for ignoring
|
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0"?>
|
||||
<phpunit
|
||||
bootstrap="tests/bootstrap.php"
|
||||
backupGlobals="false"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="Includes">
|
||||
<directory suffix="_test.php">./tests/phpunit/includes/</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
||||
<directory suffix=".php">src/</directory>
|
||||
<!-- <file>/path/to/file</file> -->
|
||||
<exclude>
|
||||
<directory suffix=".php">src/views</directory>
|
||||
<!-- <file>/path/to/file</file> -->
|
||||
</exclude>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<logging>
|
||||
<log type="coverage-clover" target="clover.xml"/>
|
||||
</logging>
|
||||
</phpunit>
|
@ -0,0 +1,127 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [ $# -lt 3 ]; then
|
||||
echo "usage: $0 <db-name> <db-user> <db-pass> [db-host] [wp-version] [skip-database-creation]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
DB_NAME=$1
|
||||
DB_USER=$2
|
||||
DB_PASS=$3
|
||||
DB_HOST=${4-localhost}
|
||||
WP_VERSION=${5-latest}
|
||||
SKIP_DB_CREATE=${6-false}
|
||||
|
||||
WP_TESTS_DIR=${WP_TESTS_DIR-${TMPDIR-/tmp}/wordpress-tests-lib}
|
||||
WP_CORE_DIR=${WP_CORE_DIR-${TMPDIR-/tmp}/wordpress/}
|
||||
|
||||
download() {
|
||||
if [ `which curl` ]; then
|
||||
curl -s "$1" > "$2";
|
||||
elif [ `which wget` ]; then
|
||||
wget -nv -O "$2" "$1"
|
||||
fi
|
||||
}
|
||||
|
||||
if [[ $WP_VERSION =~ [0-9]+\.[0-9]+(\.[0-9]+)? ]]; then
|
||||
WP_TESTS_TAG="tags/$WP_VERSION"
|
||||
elif [[ $WP_VERSION == 'nightly' || $WP_VERSION == 'trunk' ]]; then
|
||||
WP_TESTS_TAG="trunk"
|
||||
else
|
||||
# http serves a single offer, whereas https serves multiple. we only want one
|
||||
download http://api.wordpress.org/core/version-check/1.7/ /tmp/wp-latest.json
|
||||
grep '[0-9]+\.[0-9]+(\.[0-9]+)?' /tmp/wp-latest.json
|
||||
LATEST_VERSION=$(grep -o '"version":"[^"]*' /tmp/wp-latest.json | sed 's/"version":"//')
|
||||
if [[ -z "$LATEST_VERSION" ]]; then
|
||||
echo "Latest WordPress version could not be found"
|
||||
exit 1
|
||||
fi
|
||||
WP_TESTS_TAG="tags/$LATEST_VERSION"
|
||||
fi
|
||||
|
||||
set -ex
|
||||
|
||||
install_wp() {
|
||||
|
||||
if [ -d $WP_CORE_DIR ]; then
|
||||
return;
|
||||
fi
|
||||
|
||||
mkdir -p $WP_CORE_DIR
|
||||
|
||||
if [[ $WP_VERSION == 'nightly' || $WP_VERSION == 'trunk' ]]; then
|
||||
mkdir -p /tmp/wordpress-nightly
|
||||
download https://wordpress.org/nightly-builds/wordpress-latest.zip /tmp/wordpress-nightly/wordpress-nightly.zip
|
||||
unzip -q /tmp/wordpress-nightly/wordpress-nightly.zip -d /tmp/wordpress-nightly/
|
||||
mv /tmp/wordpress-nightly/wordpress/* $WP_CORE_DIR
|
||||
else
|
||||
if [ $WP_VERSION == 'latest' ]; then
|
||||
local ARCHIVE_NAME='latest'
|
||||
else
|
||||
local ARCHIVE_NAME="wordpress-$WP_VERSION"
|
||||
fi
|
||||
download https://wordpress.org/${ARCHIVE_NAME}.tar.gz /tmp/wordpress.tar.gz
|
||||
tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C $WP_CORE_DIR
|
||||
fi
|
||||
|
||||
download https://raw.github.com/markoheijnen/wp-mysqli/master/db.php $WP_CORE_DIR/wp-content/db.php
|
||||
}
|
||||
|
||||
install_test_suite() {
|
||||
# portable in-place argument for both GNU sed and Mac OSX sed
|
||||
if [[ $(uname -s) == 'Darwin' ]]; then
|
||||
local ioption='-i .bak'
|
||||
else
|
||||
local ioption='-i'
|
||||
fi
|
||||
|
||||
# set up testing suite if it doesn't yet exist
|
||||
if [ ! -d $WP_TESTS_DIR ]; then
|
||||
# set up testing suite
|
||||
mkdir -p $WP_TESTS_DIR
|
||||
svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/includes/ $WP_TESTS_DIR/includes
|
||||
svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/data/ $WP_TESTS_DIR/data
|
||||
fi
|
||||
|
||||
if [ ! -f wp-tests-config.php ]; then
|
||||
download https://develop.svn.wordpress.org/${WP_TESTS_TAG}/wp-tests-config-sample.php "$WP_TESTS_DIR"/wp-tests-config.php
|
||||
# remove all forward slashes in the end
|
||||
WP_CORE_DIR=$(echo $WP_CORE_DIR | sed "s:/\+$::")
|
||||
sed $ioption "s:dirname( __FILE__ ) . '/src/':'$WP_CORE_DIR/':" "$WP_TESTS_DIR"/wp-tests-config.php
|
||||
sed $ioption "s/youremptytestdbnamehere/$DB_NAME/" "$WP_TESTS_DIR"/wp-tests-config.php
|
||||
sed $ioption "s/yourusernamehere/$DB_USER/" "$WP_TESTS_DIR"/wp-tests-config.php
|
||||
sed $ioption "s/yourpasswordhere/$DB_PASS/" "$WP_TESTS_DIR"/wp-tests-config.php
|
||||
sed $ioption "s|localhost|${DB_HOST}|" "$WP_TESTS_DIR"/wp-tests-config.php
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
install_db() {
|
||||
|
||||
if [ ${SKIP_DB_CREATE} = "true" ]; then
|
||||
return 0
|
||||
fi
|
||||
|
||||
# parse DB_HOST for port or socket references
|
||||
local PARTS=(${DB_HOST//\:/ })
|
||||
local DB_HOSTNAME=${PARTS[0]};
|
||||
local DB_SOCK_OR_PORT=${PARTS[1]};
|
||||
local EXTRA=""
|
||||
|
||||
if ! [ -z $DB_HOSTNAME ] ; then
|
||||
if [ $(echo $DB_SOCK_OR_PORT | grep -e '^[0-9]\{1,\}$') ]; then
|
||||
EXTRA=" --host=$DB_HOSTNAME --port=$DB_SOCK_OR_PORT --protocol=tcp"
|
||||
elif ! [ -z $DB_SOCK_OR_PORT ] ; then
|
||||
EXTRA=" --socket=$DB_SOCK_OR_PORT"
|
||||
elif ! [ -z $DB_HOSTNAME ] ; then
|
||||
EXTRA=" --host=$DB_HOSTNAME --protocol=tcp"
|
||||
fi
|
||||
fi
|
||||
|
||||
# create database
|
||||
mysqladmin create $DB_NAME --user="$DB_USER" --password="$DB_PASS"$EXTRA
|
||||
}
|
||||
|
||||
install_wp
|
||||
install_test_suite
|
||||
install_db
|
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* Phpstan bootstrap file.
|
||||
*
|
||||
* @package OpenID_Connect_Generic
|
||||
* @author Jonathan Daggerhart <jonathan@daggerhart.com>
|
||||
* @author Tim Nolte <tim.nolte@ndigitals.com>
|
||||
* @copyright 2015-2020 daggerhart
|
||||
* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
|
||||
* @link https://github.com/daggerhart
|
||||
*/
|
||||
|
||||
// Define WordPress language directory.
|
||||
defined( 'WP_LANG_DIR' ) || define( 'WP_LANG_DIR', 'wordpress/src/wp-includes/languages/' );
|
||||
|
||||
defined( 'COOKIE_DOMAIN' ) || define( 'COOKIE_DOMAIN', 'localhost' );
|
||||
defined( 'COOKIEPATH' ) || define( 'COOKIEPATH', '/');
|
||||
|
||||
// Define Plugin Globals.
|
||||
defined( 'OIDC_CLIENT_ID' ) || define( 'OIDC_CLIENT_ID', bin2hex( random_bytes( 32 ) ) );
|
||||
defined( 'OIDC_CLIENT_SECRET' ) || define( 'OIDC_CLIENT_SECRET', bin2hex( random_bytes( 16 ) ) );
|
||||
defined( 'OIDC_ENDPOINT_LOGIN_URL' ) || define( 'OIDC_ENDPOINT_LOGIN_URL', 'https://oidc/oauth2/authorize' );
|
||||
defined( 'OIDC_ENDPOINT_USERINFO_URL' ) || define( 'OIDC_ENDPOINT_USERINFO_URL', 'https://oidc/oauth2/userinfo' );
|
||||
defined( 'OIDC_ENDPOINT_TOKEN_URL' ) || define( 'OIDC_ENDPOINT_TOKEN_URL', 'https://oidc/oauth2/token' );
|
||||
defined( 'OIDC_ENDPOINT_LOGOUT_URL' ) || define( 'OIDC_ENDPOINT_LOGOUT_URL', 'https://oidc/oauth2/logout' );
|
@ -0,0 +1,30 @@
|
||||
server {
|
||||
index index.php index.html;
|
||||
|
||||
listen 80 default_server;
|
||||
|
||||
server_name localhost penguin.linux.test ${LOCAL_HOSTNAME};
|
||||
|
||||
client_max_body_size 1g;
|
||||
|
||||
error_log /var/log/nginx/error.log;
|
||||
access_log /var/log/nginx/access.log;
|
||||
|
||||
root /var/www/${LOCAL_DIR};
|
||||
|
||||
absolute_redirect off;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$args;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
try_files $uri =404;
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
fastcgi_pass php:9000;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
}
|
||||
}
|
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* Plugin Name: MailHog PhpMailer Setup
|
||||
* Description: Establishes a connection between the PhpMailer library and the MailHog local-dev Docker container.
|
||||
*
|
||||
* @package OpenID_Connect_Generic_MuPlugins
|
||||
*/
|
||||
|
||||
// If this file is called directly, abort.
|
||||
if ( ! defined( 'WPINC' ) ) {
|
||||
die;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides the configuration for PhpMailer to use MailHog.
|
||||
*
|
||||
* @param PHPMailer $phpmailer The PHPMailer instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function mailhog_phpmailer_setup( PHPMailer $phpmailer ) {
|
||||
|
||||
defined( 'SMTP_HOST' ) || define( 'SMTP_HOST', 'mailhog' );
|
||||
// PHPMailer doesn't follow WordPress naming conventions so this can be ignored.
|
||||
// phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
|
||||
$phpmailer->Host = SMTP_HOST;
|
||||
|
||||
defined( 'SMTP_PORT' ) || define( 'SMTP_PORT', 1025 );
|
||||
// PHPMailer doesn't follow WordPress naming conventions so this can be ignored.
|
||||
// phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
|
||||
$phpmailer->Port = SMTP_PORT;
|
||||
|
||||
$phpmailer->IsSMTP();
|
||||
|
||||
}
|
||||
|
||||
add_action( 'phpmailer_init', 'mailhog_phpmailer_setup', 10, 2 );
|
Loading…
Reference in New Issue