From db4606033b8b15ba489350c72634ec57e81786fe Mon Sep 17 00:00:00 2001 From: Frugan Date: Wed, 6 Nov 2024 15:26:44 +0100 Subject: [PATCH] Initial commit --- .auto-changelog | 6 + .env.dist | 73 ++ .gitconfig.dist | 15 + .github/CODE_OF_CONDUCT.md | 45 + .github/CONTRIBUTING.md | 41 + .github/CONTRIBUTORS.md | 3 + .github/FUNDING.yml | 4 + .github/ISSUE_TEMPLATE/bug_report.md | 0 .github/ISSUE_TEMPLATE/feature_request.md | 0 .github/PULL_REQUEST_TEMPLATE.md | 0 .github/SECURITY.md | 16 + .github/SUPPORT.md | 0 .github/workflows/main.yml | 171 +++ .gitignore | 213 ++++ .wordpress-org/banner-1544x500.jpg | Bin 0 -> 98133 bytes .wordpress-org/banner-772x250.jpg | Bin 0 -> 36201 bytes CHANGELOG.md | 6 + LICENSE | 674 ++++++++++ Makefile | 297 +++++ README.md | 205 +++ auto-changelog.hbs | 37 + build/docker/Dockerfile.wordpress | 56 + build/docker/logs-catcher.sh | 22 + build/docker/sendmail-wrapper | 29 + docker-compose.override.yml.dist | 18 + docker-compose.yml | 119 ++ docs/LINKS.md | 5 + upload-field-to-youtube-for-acf/.gitignore | 43 + .../.php-cs-fixer.dist.php | 69 + .../asset/css/jquery-ui.min.css | 7 + .../asset/css/main.css | 7 + .../asset/js/main.js | 388 ++++++ upload-field-to-youtube-for-acf/composer.json | 95 ++ .../exclude_from.txt | 1 + .../grumphp.yml.dist | 49 + .../include_from.txt | 12 + .../upload-field-to-youtube-for-acf-it_IT.mo | Bin 0 -> 5632 bytes .../upload-field-to-youtube-for-acf-it_IT.po | 297 +++++ .../lang/upload-field-to-youtube-for-acf.pot | 291 +++++ .../phpstan.neon.dist | 10 + .../psalm.xml.dist | 13 + upload-field-to-youtube-for-acf/readme.txt | 34 + upload-field-to-youtube-for-acf/rector.php | 41 + .../src/Bootstrap.php | 120 ++ upload-field-to-youtube-for-acf/src/Field.php | 1130 +++++++++++++++++ .../tests/bootstrap.php | 16 + .../tests/data/acf/default.json | 57 + .../tests/data/wp-cfm/default.json | 7 + .../tests/phpunit.xml | 0 .../tests/stubs/constants.stub | 10 + .../tests/stubs/functions.stub | 25 + .../upload-field-to-youtube-for-acf.php | 44 + 52 files changed, 4821 insertions(+) create mode 100644 .auto-changelog create mode 100644 .env.dist create mode 100644 .gitconfig.dist create mode 100644 .github/CODE_OF_CONDUCT.md create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/CONTRIBUTORS.md create mode 100644 .github/FUNDING.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/SECURITY.md create mode 100644 .github/SUPPORT.md create mode 100644 .github/workflows/main.yml create mode 100644 .gitignore create mode 100644 .wordpress-org/banner-1544x500.jpg create mode 100644 .wordpress-org/banner-772x250.jpg create mode 100644 CHANGELOG.md create mode 100755 LICENSE create mode 100644 Makefile create mode 100644 README.md create mode 100644 auto-changelog.hbs create mode 100644 build/docker/Dockerfile.wordpress create mode 100755 build/docker/logs-catcher.sh create mode 100755 build/docker/sendmail-wrapper create mode 100644 docker-compose.override.yml.dist create mode 100644 docker-compose.yml create mode 100644 docs/LINKS.md create mode 100644 upload-field-to-youtube-for-acf/.gitignore create mode 100644 upload-field-to-youtube-for-acf/.php-cs-fixer.dist.php create mode 100644 upload-field-to-youtube-for-acf/asset/css/jquery-ui.min.css create mode 100644 upload-field-to-youtube-for-acf/asset/css/main.css create mode 100644 upload-field-to-youtube-for-acf/asset/js/main.js create mode 100644 upload-field-to-youtube-for-acf/composer.json create mode 100755 upload-field-to-youtube-for-acf/exclude_from.txt create mode 100644 upload-field-to-youtube-for-acf/grumphp.yml.dist create mode 100644 upload-field-to-youtube-for-acf/include_from.txt create mode 100644 upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf-it_IT.mo create mode 100644 upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf-it_IT.po create mode 100644 upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf.pot create mode 100755 upload-field-to-youtube-for-acf/phpstan.neon.dist create mode 100755 upload-field-to-youtube-for-acf/psalm.xml.dist create mode 100644 upload-field-to-youtube-for-acf/readme.txt create mode 100644 upload-field-to-youtube-for-acf/rector.php create mode 100644 upload-field-to-youtube-for-acf/src/Bootstrap.php create mode 100644 upload-field-to-youtube-for-acf/src/Field.php create mode 100644 upload-field-to-youtube-for-acf/tests/bootstrap.php create mode 100644 upload-field-to-youtube-for-acf/tests/data/acf/default.json create mode 100644 upload-field-to-youtube-for-acf/tests/data/wp-cfm/default.json create mode 100644 upload-field-to-youtube-for-acf/tests/phpunit.xml create mode 100644 upload-field-to-youtube-for-acf/tests/stubs/constants.stub create mode 100644 upload-field-to-youtube-for-acf/tests/stubs/functions.stub create mode 100644 upload-field-to-youtube-for-acf/upload-field-to-youtube-for-acf.php diff --git a/.auto-changelog b/.auto-changelog new file mode 100644 index 0000000..c2a1c17 --- /dev/null +++ b/.auto-changelog @@ -0,0 +1,6 @@ +{ + "unreleased": true, + "commitLimit": false, + "template": "auto-changelog.hbs", + "output": "CHANGELOG.md" +} diff --git a/.env.dist b/.env.dist new file mode 100644 index 0000000..d3d655b --- /dev/null +++ b/.env.dist @@ -0,0 +1,73 @@ +MARIADB_TAG=latest +MARIADB_ALLOW_EMPTY_PASSWORD=yes +MARIADB_USER=user +MARIADB_PASSWORD= +MARIADB_DATABASE=wordpress + +#https://it.wordpress.org/download/releases/ +#https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/ +# 5.6.2 -> 22 Febbraio 2021, PHP 7.4.16, Composer 1.10.20 +# 5.7.2 -> 24 Luglio 2021, PHP 7.4.21, Composer 2.1.3 +# 5.8.3 -> 6 Marzo 2022, PHP 7.4.27, Composer 2.2.4 +# 5.9.3 -> 6 Luglio 2022, PHP 8.0.21, Composer 2.3.10 +# 6.0.3 -> 24 Aprile 2023, PHP 8.1.12, Composer 2.4.4 +# 6.1.1 -> 24 Aprile 2023, PHP 8.1.17, Composer 2.5.5 +# 6.2.2 -> 7 Agosto 2023, PHP 8.2.9, Composer 2.5.8 +# 6.3.2 -> 25 Gennaio 2024, PHP 8.2.12, Composer 2.6.5 +# 6.5.4 -> 5 Giugno 2024, PHP 8.2.20, Composer 2.7.7 +# 6.6.1 -> 31 Luglio 2024, PHP 8.2.22, Composer 2.7.7 +# 6.6.2 -> 24 Ottobre 2024, PHP 8.2.25, Composer 2.8.1 +# jameelmoses/wordpress-kint-debugger:^2.0 requires PHP >= 8.x +WORDPRESS_TAG=latest +WORDPRESS_ALLOW_EMPTY_PASSWORD=yes +WORDPRESS_DATABASE_HOST=mariadb +WORDPRESS_DATABASE_PORT_NUMBER=3306 +WORDPRESS_DATABASE_NAME=wordpress +WORDPRESS_DATABASE_USER=user +WORDPRESS_DATABASE_PASSWORD= +WORDPRESS_USERNAME=admin +WORDPRESS_PASSWORD=password +WORDPRESS_PLUGINS= +WORDPRESS_SMTP_HOST=mailpit +WORDPRESS_SMTP_PORT_NUMBER=1025 +WORDPRESS_SMTP_USER= +WORDPRESS_SMTP_PASSWORD= +WORDPRESS_SMTP_PROTOCOL=tls + +NODE_TAG=20 +NODE_PORT=3000 +NODE_ENV=develop +NODE_DEBUG= +NODE_LOG_LEVEL= + +PHPMYADMIN_TAG=latest +PHPMYADMIN_HTTP_PORT=8080 +PHPMYADMIN_HTTPS_PORT=8443 +PHPMYADMIN_ALLOW_NO_PASSWORD=yes +PHPMYADMIN_DATABASE_HOST=mariadb +PHPMYADMIN_DATABASE_USER=user +PHPMYADMIN_DATABASE_PASSWORD= +PHPMYADMIN_DATABASE_PORT_NUMBER=3306 +PHPMYADMIN_DATABASE_ENABLE_SSL=no +PHPMYADMIN_DATABASE_SSL_KEY= +PHPMYADMIN_DATABASE_SSL_CERT= +PHPMYADMIN_DATABASE_SSL_CA= +PHPMYADMIN_DATABASE_SSL_CA_PATH= +PHPMYADMIN_DATABASE_SSL_CIPHERS= +PHPMYADMIN_DATABASE_SSL_VERIFY=yes + +MAILPIT_TAG=latest +MAILPIT_HTTP_PORT=8025 +MAILPIT_MAX_MESSAGES=5000 + +OPENAI_KEY= + +#https://github.com/phpstan/phpstan/issues/3245#issuecomment-702016844 +PHPSTAN_PRO_WEB_PORT=11111 + +# https://nono.ma/github-oauth-token-for-github-com-contains-invalid-characters-on-composer-install +GITHUB_TOKEN= + +FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID= +FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET= +FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED=false diff --git a/.gitconfig.dist b/.gitconfig.dist new file mode 100644 index 0000000..420c27e --- /dev/null +++ b/.gitconfig.dist @@ -0,0 +1,15 @@ +;https://stackoverflow.com/a/1889699 +;https://stackoverflow.com/a/18330114 +;https://gist.github.com/pksunkara/988716 +;https://dev.to/tomerbendavid/git-configurations-2ngi +;https://spin.atomicobject.com/git-configurations-default/ + +[core] + autocrlf = input + symlinks = false + +[fetch] + prune = true + +[pull] + rebase = true diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..58b5708 --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,45 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies within all project spaces, and it also applies when an individual is representing the project or its community in public spaces. Examples of representing a project or community include using an official project email address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project maintainer using any of the [private contact addresses](https://github.com/frugan-dev). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4, available at + +For answers to common questions about this code of conduct, see \ No newline at end of file diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..6f91be5 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,41 @@ +# Contributing + +When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change. + +Please note we have a [code of conduct](CODE_OF_CONDUCT.md), please follow it in all your interactions with the project. + +## Development environment setup + +To set up a development environment, please follow these steps: + +1. Clone the repo + + ```sh + git clone https://github.com/frugan-dev/upload-field-to-youtube-for-acf + ``` + +2. TODO + +## Issues and feature requests + +You've found a bug in the source code, a mistake in the documentation or maybe you'd like a new feature? Take a look at [GitHub Discussions](https://github.com/frugan-dev/upload-field-to-youtube-for-acf/discussions) to see if it's already being discussed. You can help us by [submitting an issue on GitHub](https://github.com/frugan-dev/upload-field-to-youtube-for-acf/issues). Before you create an issue, make sure to search the issue archive -- your issue may have already been addressed! + +Please try to create bug reports that are: + +- _Reproducible._ Include steps to reproduce the problem. +- _Specific._ Include as much detail as possible: which version, what environment, etc. +- _Unique._ Do not duplicate existing opened issues. +- _Scoped to a Single Bug._ One bug per report. + +**Even better: Submit a pull request with a fix or new feature!** + +### How to submit a Pull Request + +1. Search our repository for open or closed + [Pull Requests](https://github.com/frugan-dev/upload-field-to-youtube-for-acf/pulls) + that relate to your submission. You don't want to duplicate effort. +2. Fork the project +3. Create your feature branch (`git checkout -b feat/amazing_feature`) +4. Commit your changes (`git commit -m 'feat: add amazing_feature'`) uses [conventional commits](https://www.conventionalcommits.org), so please follow the specification in your commit messages. +5. Push to the branch (`git push origin feat/amazing_feature`) +6. [Open a Pull Request](https://github.com/frugan-dev/upload-field-to-youtube-for-acf/compare?expand=1) \ No newline at end of file diff --git a/.github/CONTRIBUTORS.md b/.github/CONTRIBUTORS.md new file mode 100644 index 0000000..76cd59a --- /dev/null +++ b/.github/CONTRIBUTORS.md @@ -0,0 +1,3 @@ +# Contributors + +- [Frugan](https://github.com/frugan-dev) - Creator and main maintainer diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..fbca419 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,4 @@ +# These are supported funding model platforms + +github: [frugan-dev] +buy_me_a_coffee: frugan diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..e69de29 diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..e69de29 diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..e69de29 diff --git a/.github/SECURITY.md b/.github/SECURITY.md new file mode 100644 index 0000000..b14f1bd --- /dev/null +++ b/.github/SECURITY.md @@ -0,0 +1,16 @@ +# Security Policy + +## Reporting a Vulnerability + +If there are any vulnerabilities in **upload-field-to-youtube-for-acf**, don't hesitate to _report them_. + +1. Use any of the [private contact addresses](https://github.com/frugan-dev). +2. Describe the vulnerability. + + If you have a fix, that is most welcome -- please attach or summarize it in your message! + +3. We will evaluate the vulnerability and, if necessary, release a fix or mitigating steps to address it. We will contact you to let you know the outcome, and will credit you in the report. + + Please **do not disclose the vulnerability publicly** until a fix is released! + +4. Once we have either a) published a fix, or b) declined to address the vulnerability for whatever reason, you are free to publicly disclose it. \ No newline at end of file diff --git a/.github/SUPPORT.md b/.github/SUPPORT.md new file mode 100644 index 0000000..e69de29 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..bb85ab0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,171 @@ +name: Main + +on: + push: + branches: + - 'master' + - 'support/*' + tags: + - 'v[0-9]+.[0-9]+.[0-9]+*' + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + mariadb_tag: [ + latest + ] + wordpress_tag: [ + 5.9.3, + latest + ] + node_tag: [ + 22 + ] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + fetch-tags: true + + - name: Set up Docker + uses: docker/setup-buildx-action@v1 + + - name: Cache Docker layers + uses: actions/cache@v4 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-${{ matrix.mariadb_tag }}-${{ matrix.wordpress_tag }}-${{ matrix.node_tag }}-${{ hashFiles('**/Dockerfile') }} + restore-keys: | + ${{ runner.os }}-buildx-${{ matrix.mariadb_tag }}-${{ matrix.wordpress_tag }}-${{ matrix.node_tag }}- + + - name: Cache npm modules + uses: actions/cache@v4 + with: + path: ~/.npm + key: ${{ runner.os }}-node-${{ matrix.node_tag }}-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node-${{ matrix.node_tag }}- + + #https://stackoverflow.com/a/71334100/3929620 + - name: Set environment variables + run: | + PLUGIN_VERSION=$(echo "${GITHUB_REF##*/}" | sed 's/^v//') + echo "PLUGIN_VERSION=$PLUGIN_VERSION" >> $GITHUB_ENV + IS_VALID_TAG=$([[ "${GITHUB_REF##*/}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]] && echo true || echo '') + echo "IS_VALID_TAG=$IS_VALID_TAG" >> $GITHUB_ENV + echo "IS_LAST_JOB=$([ $(expr ${{ strategy.job-index }} + 1) = ${{ strategy.job-total }} ] && echo true)" >> $GITHUB_ENV + + - name: Print environment variables + run: | + echo "PLUGIN_VERSION=${{ env.PLUGIN_VERSION }}" + echo "IS_VALID_TAG=${{ env.IS_VALID_TAG }}" + echo "IS_LAST_JOB=${{ env.IS_LAST_JOB }}" + + - name: Create .env file + run: cp .env.dist .env + + # method #1 + - name: Install mkcert + run: | + sudo apt-get update && sudo apt-get install libnss3-tools + curl -JLO "https://dl.filippo.io/mkcert/latest?for=linux/amd64" + chmod +x mkcert-v*-linux-amd64 + sudo cp mkcert-v*-linux-amd64 /usr/local/bin/mkcert + + # method #2 + #- name: Generate self-signed CA + # uses: kofemann/action-create-certificate@v0.0.4 + # with: + # hostcert: 'server.crt' + # hostkey: 'server.key' + # cachain: 'ca-chain.pem' + + #- name: Move certificates + # run: | + # mkdir -p tmp/certs + # mv server.crt server.key ca-chain.pem tmp/certs/ + + - name: Run Makefile 'all' task + run: | + make \ + MARIADB_TAG=$MARIADB_TAG \ + WORDPRESS_TAG=$WORDPRESS_TAG \ + NODE_TAG=$NODE_TAG \ + PLUGIN_NAME=${{ github.event.repository.name }} \ + PLUGIN_VERSION=${{ env.PLUGIN_VERSION }} + + #https://cardinalby.github.io/blog/post/github-actions/implementing-deferred-steps/ + # method #1 + #- name: Wait for WordPress setup to complete + # run: | + # timeout=300 + # while [ $timeout -gt 0 ]; do + # docker compose exec wordpress test -f /bitnami/wordpress/wp-config.php && break + # echo "Waiting for wp-config.php ($timeout seconds left)..." + # sleep 5 + # timeout=$((timeout - 5)) + # done + # [ $timeout -gt 0 ] || { echo "Error: Timeout reached, wp-config.php not found"; exit 1; } + + # method #2 + - name: Wait for WordPress setup to complete + run: ./build/docker/logs-catcher.sh wordpress "WordPress setup finished" 180 + + - name: Run Makefile 'install' task + run: | + make install \ + MARIADB_TAG=$MARIADB_TAG \ + WORDPRESS_TAG=$WORDPRESS_TAG \ + NODE_TAG=$NODE_TAG \ + PLUGIN_NAME=${{ github.event.repository.name }} \ + PLUGIN_VERSION=${{ env.PLUGIN_VERSION }} \ + GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} + + - name: Run Makefile 'test' task + run: | + make test \ + PLUGIN_NAME=${{ github.event.repository.name }} \ + PLUGIN_VERSION=${{ env.PLUGIN_VERSION }} + + #https://github.com/orgs/community/discussions/25641#discussioncomment-3248571 + - name: Run Makefile 'deploy' task + if: | + github.ref_type == 'tag' + && env.IS_VALID_TAG + && env.IS_LAST_JOB + env: + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + run: | + make deploy \ + MODE=production \ + MARIADB_TAG=$MARIADB_TAG \ + WORDPRESS_TAG=$WORDPRESS_TAG \ + NODE_TAG=$NODE_TAG \ + PLUGIN_NAME=${{ github.event.repository.name }} \ + PLUGIN_VERSION=${{ env.PLUGIN_VERSION }} \ + GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} + + - name: Create release + if: | + github.ref_type == 'tag' + && env.IS_VALID_TAG + && env.IS_LAST_JOB + uses: softprops/action-gh-release@v2 + with: + # https://github.com/softprops/action-gh-release + # Note that if you intend to run workflows on the release event (on: { release: { types: [published] } }), + # you need to use a personal access token for this action, as the default secrets.GITHUB_TOKEN does not trigger another workflow. + # See: https://github.com/actions/create-release/issues/71 + token: ${{ secrets.PRIVATE_GITHUB_TOKEN }} + files: dist/${{ github.event.repository.name }}.zip + generate_release_notes: true + + - name: Run Makefile 'down' task + run: make down diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..23b94c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,213 @@ +dist/ +tmp/ + +.gitconfig* +!.gitconfig.dist + +docker-compose.*.yml + +*.code-workspace + + +# Created by https://www.toptal.com/developers/gitignore/api/git,node,sass,visualstudiocode +# Edit at https://www.toptal.com/developers/gitignore?templates=git,node,sass,visualstudiocode + +### Git ### +# Created by git for backups. To disable backups in Git: +# $ git config --global mergetool.keepBackup false +*.orig + +# Created by git when using merge tools for conflicts +*.BACKUP.* +*.BASE.* +*.LOCAL.* +*.REMOTE.* +*_BACKUP_*.txt +*_BASE_*.txt +*_LOCAL_*.txt +*_REMOTE_*.txt + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### Node Patch ### +# Serverless Webpack directories +.webpack/ + +# Optional stylelint cache + +# SvelteKit build / generate output +.svelte-kit + +### Sass ### +.sass-cache/ +*.css.map +*.sass.map +*.scss.map + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# End of https://www.toptal.com/developers/gitignore/api/git,node,sass,visualstudiocode + + +### Override ### +.env +.env.* +!.env*.dist + + +### Various ### +.DS_Store +.DS_Store? +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +*.log +*.swp +*.bak diff --git a/.wordpress-org/banner-1544x500.jpg b/.wordpress-org/banner-1544x500.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ac096787f00be665fef34b5e8a5cfa286cf01107 GIT binary patch literal 98133 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 z zp=)wY87!(xSS;>1j7zE0azx88R~3o|W>FYGXkXKktNBYk^)WMd;enfBQJwz5`snrB zdSK+UQ-XhuWBCk99*4Cc5FDLXydp3>&dz?rpoE~35ZKMkoI9ve_iH;G68|zGa{Ay8 zmXGig8#j$JDedX1>ylQB{O+xIBCY9%)IqBc_N2ebqPx#Oku4icw;88pgftgmmci=g z=l58k=Ci^JMj3GJPKolw=1+|~225|>z$~T9ewLryM*H@E%L!hHj*ECG+gPTH-1wdt z{8$n7_Ib8!H{7uD4rZ6NbTQF=t#=qTqhI0ANdd$TOPNdma6z}kUdtDHDA=lGZtw?d z-pu*GU%Yj~+#zgj)$kkTch}ctVIFGj3;-)%w*hI+iS+n z_(cG!?P+?SLI{Pu;@iDO=LI$!*~zf<{XbY43p^LMP00M`Zhe&}{_&Dv15bOztLeEV z?=Wdn%;^yxsXthDG~Yj%nKZKcv4raq1N zm<1tBJ^tV0>gVNnB-J;reSEL@@7yocoI~fBFJcm8CS)hQ9S@pp?yA2uN|ejOX6=UO zG7l^JM1R^{>ogQTJ2;J(YBeK2H_^F2P^}Zk^wj6|Q@17AYwpQQ671tR`HW zeZZ`lPdIF%1GHB~K7Zm(2G#W4%X{v=UMo#OQ0*&}87zf7z?}J1kFi@d4Dz;eWZnM$ z>qY~PaWD^Nb+5wbH@UFg*uMLXfz4)!f%u;QTc&q;JF4z={@benrN7mPNxwe0%lVH-5P z4(ji!rox7JQ`Wk zC-MLojM9_|F5?eVbb{nD=Xe9TB$d9AU8@e}@3B7b1o=E}2sL@Jz=UEI=zN>~8`YCB zpY{C7RBMG5!M>@YqptoW;&(kmYWdFulBS28uZG7wj473a-C$QP*-QKv0Y?|=zqH@1 zF<%;Rk5>)PrXL9m$wbz`&N~p@52H&B zZ1u{CYaC1FB!oL;Bi`1vwH+kNl>}LTm=Fzi`LQJW(rR0JZOX)DF?-2H&)61;Z~|p! zFY$e?2~sxFpCwhH#9ScOYA`*0UVAK=`8dEf1@+_)R#_`hl$Sa)1!c9=8NB+!P4Ba0 zUq~*JAf)!v~3eI`%D3_1mmv^XJv1ZP)ZN=p~q0?Z~vrn~eI$IXok0 zS%V$#{m5~Ec7b4X?Fv)OBlH4W#zEW4yRY7vUCq4B+f=6~eNXKquLa)EM4XxE7{l)c zAZuy*sSB7=AWhYd;vn&Z9kEVI-F5xR&Yv2O-aWG&>fiLs6J6s~%5Q zjqBBI6_6ITo9*%ccn)O(wj|l0a zj*(fg*Qw7MZ>i+xm$1)<0WB%jm5U~cUW6u5>B>@{h0SbCJQ~7t*36_@iI<_~6L2U} zHV*Ejlb?QO>^r(Gvi!Lze9n@Nn7-Onnb*PjSw%sgoSu`zF8%Mjv|dlLBQ;&cvoAbZ z%s~aIbT6-@BP~MXM0)x|elTfg=}dfIWqDIE^aj$rUEWWssHElMBX|#JH2SpVh}EUK zds@CJ=V|++HPDN973xJNf-A0Z_3VX^#kTH3ai+(^=>1i89{C92`mt3rT&K5~j)qyr zfEA~UqrwRY`AkLR0v8vvI07DPPQTi%c*A1<5#qdHSlw}$C#jj8+~nA=3)=hGav~3T zlJDQ{mwpDrkmGHwetSOnwFlM1hhjyjT+a$yo_L=HK1}cS7E!3;GO%t``}jD~XWoIA zZXkmc?T<&<^40z_+j(Pe15GZrnfvIMwn*ILMV_q)t5vf-q;Ym>D?${MG%ODe|A>M?r-GdrrVhBu`7oxP+^uXWNYE(+8Yw z50Dp`wm7?}b>t6?8CQ(YBqr4HKE74g$B#A+d*SVGAzuI+qS_9qF@MTj^)Cym$Sums zRvFeoNu}p!3=8-Iw2H|23%k48do+qup8FXa>kRO&U ziuOE+jN1|QG&MnJP8%p@KM12O_#JC}m<#d?p=#bSpt8w^R_}}xN(HXjzUzo!*54w> zI0*hE<4z7x>yj(WS!WT+1!25D)DahriAAtkOMQqSfA#jiL)!lgcrz<$tBfDL&!o39d4VwNl+v80(3|_+TS~Pf_>v_% z*nZejDx(blOEnL(^vn($fUJJeT=^G2RXF!+5KUF}NGUsWGuxw=`nM=@;#J71h_B3` zUtGa3HKqr~sQbGAsQY0S1+jxzm*z}HUzZ;yZ+EtnHps?wk27AMkwFt*jqXPfz{N$z5oAKnYu&O^; zqO4FsRAt>?U9TROSI~_vS>|xfzbV~rZgNg3&F^e<9*97{*ACWhcL4-_v6el=Lesgv-0G| zC`o*b%eo@`+7l(jUc0(l8WKO_=S6ZAe^X3V#vUYX-`XIxX<=6^>qh^4%sIuqFqcl( zujT&ZvG~u5K>kM9H})~-XX{y(Mq^*aml(^GBX=0f*8IU>h7Z(o9QnqXju|EI$rVqm zk|e;Dj7E9L^W^ry=i_9?U%DxrOeMyt9%W}MHCt)&p6k}DL(Si%s!LG+R;LlkEp(q; zp<`rxlf7mxy0eDv@?Tl6O>TW_)J&Vl%d`qJ>mmHnfOPi=@IRwCeB=;&l2UZ5QQoF| z+-PtotrhmnCMIuhOLd2Xk*3)n?PK4JQN%5(w@PT#5vj7I$}d zEAH;W-JJr(-HVmd7WY!z3KTEaqHTc!_nSV?mbJdUzCZ8#XRmdw{Fo%y%$#$~oH8@V zY4mi`n3qkN&7v5n@%ywb!SjkRjr{9kdU3xf`{eEKu@B^-lwG+bBC2hp@hio-NeK9S9(sdOXV7{hf{*9iBC(>S28XgTwUvKl};)yk#bn?=Kr>L z!n#7Qb1Ua?YDtCV!{=6djcNr`w+g3cWUmEMy^~og^a}Df4RTqQ29N*$kR_`m*cON# zimCa0w-wM2Q5w}|-8?@2(GZYdcRmf2h3B zxoXO^Gb$x{M2}i(;+t=1F`BUsYD_=EKRZ>r{;Zd#nf?1ZPk^WEJSvq*n^0N8;!!Pg zqyATF#e*CR(rL8a6(+%JxN2)g_|}iUEoUJqp0(4xG5k}aqI;9k!14a#yO=`za2nkR z%h&V8iUl>n7RCm$+rgaiwJ6E^xA=Ff-z0-ZGCu`!n%}&hoM7DdVLMsOJq}$~er$0# zowm#jS zM3kjPOZmX>r!e{t079K{`Ef|WHpKm6ZVl7T@sXXt9q5A-vaD!9WFA3GFCx@jhSheE2g#F`_aY`VT2e|7o+nAqJAKWD3^Zj9#QH@+-9j(9AbF7jkB} z2fH*kFkyh%Z;FljUzCQzWN-s+)EAckQi9ndyUYnPk~%$K?(*_w4KsPy)rJtnBa=2i2GTYV6R zYb^5*{?&4wa(SBC+uu73e@$z}v$V7@g6DLj)I}c_5_&6-GU9Ix>y!CU-c3mTd+@QU zu^ocXGBvm4KFd?gyQ~mZDKq5#1IXnM>0~qiI5`o9G~;s*3_5(7113YuY)@`=GgiLX zm;p}pQoLm~eArLgU7sJch6Xj_U5~Z9XkC@CEOKykJui2j*wWyj<`~RO+v)C9HFL%C zG{q!NtXBHm*?F3l7)BrL;$13cJ$esZcFEBk@5uW9pnxIE>_5g?-K%B|p93ipodhf@ zy}y6`W3&4@{=@2R%`SJBINNQ~_kS0<(i64C_wB~t=(ED{+h6N@uL-)u@rb<~{m}f{ zQD3Rn)=287ld{j&o^7Gd&E=n$JX*`nrT;OoFI0XTF)C!J8GU|p7B7wN#DBrJiPhUE zM(}>QzKBF9_<&9tuDMvW$NFm|>l8gg4m4-JI=svx{<)nVIX31ENQH2;R3|o1$k(&^31MNo^K&k z_21i-NJREBZMUUMoZ+_Nds_SxJF@G43snfd#}=w9sds!QLt8ykktoY4!EeUKoA5tHm(ka2l|qMm9t%-i@{U7CC*1Uc6|@RGdp-TrVC{F0 z?UV1fPAQHsjFBLx8%;fMWQ!3jlVhBXcc3a(a{qJVG^rewW2$-bdyO@#Fe`i^S@=Yp z*hJQA0BJi8XJHl<)w%qj*xBRp%$=VXhO$|;%^-dzF>Y2nYCGE&#!dW1R_5Obz+dA& zaLd1U*vq-0QtkDR`q7d*uI^LXRfIgM3?JsiaEwz73lA~*dHfpE*E#)bugm0@ys?eC z`NS?4{=tNiNL(d|@0Z77Hem7i{pi2m=hq8Fy4!EdmrFp~MPo?PH0w`zlXkX&siJQ* z4oP+xvVs_qt|6TD3MT~Tw{&v@o@|R>UYQ11Ao57DZOW2W1&ZJh(#IaV zi$6&)&k^(cd>z-$VDr@awL`$3BukgcnE$RdA<)YFep{ZZP0@Ad4~Eo>INV;tTxY$h z+S03+5+ArR|1QA>WS((on%lir6ZYQf3X@duJW4I)c_;8zbf;(;7ZOJP>}QFUk-~C$ zhcqfm_wqO$ohCV7Sp=T+{k`kX)!d$aXqj9KgK+n(7NAk4!CrOVnf$WB@?DDkqHa4_ zGJ#Z{2pR3~iA_UN5O~UvBPNN!EN-Xa3ct}NCiS6>>v+?x^1MT3VH8jg#fssB(0QlE zhlX039zVP3We+M)BzYcXrqi4L;#+_vs)~nW=(19FNVeIF@_AFCV$F4aK0%RLnl|gj z;x8Lh8dpSkA{B#82DeS!FtN)QdhkW z@4SH3Txvb$FGR41wjrltU#qT#1g#jcEE%WufU-Kj82z2n*nIhej_4$c;Qijs7kht5 z_>aUcu$ytwjH?Ui);_WXQne~g4+aT1Y52tH;ijz#W9|$48P*X~2(PhA?x=NtHUF~T zC8Qk3Tnu0{848g7s95q2&Yv*vUHeN`W!mh0x#zQYLo%3QX0zJfN}pH|qenqDK4S3d zbwktB$aux)uPa@2uPffSvX*#0RQTde_B2)0vBlYK4!G7IBaXkQyzTUTVG55s*idPD z#>6~-GgW8ThNO_^O~9qUET=XsS4vj3H&+}V^+{Q6x34rXrB$tZ>x8dK zcc)(Nzv=t1XF7sUOH=Ro<6$!sr**k^tS}9qI-6>v?^+Mmnc+DfLU_q#l{- zgNxu_Y2c8&R;NYUcaok}b)CuCS&HRJ8lFALp<0nlbI6z2DDhqu8_?V^Rco4h?4#Pq zsfxTa=p8fC7)u0qf=|}S-;{*j@y0G@{OJ29P5Sa1r+(6zfGaLbJ_w6 z6As||U^E)Z#7Ao5dG+`uZtu2l`@D!q575uJ@H*aC`W{i^>rU}q>-{10Y=4GOKn;IC zaqVx!t>yX5Z^KkIU!R0Gk4wgH*Z9pH4SUwZG-#P3I6kP@{Bj;v7*Gja_(CdEXBnPd zD5brqUs0eHTm6bD)h@ z-)J$oN@Pn`Dg5;>o0llJtZ-*kcldPYXcU_=KRU0ABK;xVR=V=?ZO zDv4PaizW~bCOH^x-+H7eT!l;|OKH%9%MA45$_?IWjnb$cF0;y7V;#)wY;6f+Nhj*^ z(sSjMJ>`fYWwe*U()En@(gPS36s}SZk_RM#u zp2P-d0p%8zNaLxfVhy@cuji@Kgt_0y$!2`;S{@beoUBX**Ru|zi>pelZFJr9=YUD# zGow$+0?Z%|mZGNpcsHY_N&j07$oo0&%MP5rHZ*J{=}|P6AZ}$<&cZ`MN>>qfe zzM!$q^4z?V7jH)*@&2m?)+b8=uEgS>?#vXfZlt-{vyJB`+m3{0?7ctXGwezS5ie7I z%_F&cVfA`H`EK;N!Rtq+`=%jS3gjLNVWGKMBYI@mhJ5Of-@G?QDfv4%KFI0A(HGtH zCaCl}nOI2`D-ieB2*1(`E9>W{DZH=yEIDDlNNNh=AIWJY@MJ4Icvoins`^IZVL-)> z-G{4pbeLaJa&uq1a&`IVplN%fwUiz*ERdlW9kz7wxI(UT#b$9fW@+UzER2%czoU9I zgq)CS2bb7SfzZ6-h4?k_%6olBh+@Bd<8DX!W`Sf|%iRJk0IM}AU2L=Cf5cKNQ@xX8 z3M4Z*7oJZyVXd%T;Tdr%3WH<63qGIem<+p28duNx2e8{BA%rT%QQ;$8Xb=fmIf&n5N4DGSKifU2%Z_U~ zSd{KV|FPYhnuv>_!qEa}k1*AG{y_G# zi~*EOySC9<>_U&}hKY@86iP*DLWHtBXh5|!5@o}s(tJ{!!sPr}`}4AItA^S9rPVF2eGQCdB?_|+m5bCf1}?cNl!IE)qiORNk#uP`g|z#I&^8b$>ijmk9I`k z18#!ai{di}8XMQuM2bt_0NwcKU%di&rq!X){`MiXx^lh z5WATN_Vh>m*Jud%=zv>LVja`wEL;~oxSgyEiM)H4%-frnzq4y^S{6Ddu`8 z1MBC1$+yl=%`YlP3@D#<-sKis(haf_RhYhosi}&tFQ&Uy^^S$9t)L$)9y0WaE==sL z=a)HR?s0+9y)1$Id|xQoUJg0zeqB2MKKJRHR%FGEW47>r2rXHd!L`gi$Aeh#zT_TE zDvO@)$_aC4F?TV4tiS)sQ}wE0E7-fbhPXg~T2^I8{m&0UmCzQ4QL@*-A;+by<}RP5 zN}cfG%ey~D~ z;!Fk!X&f8eAse+2tF!&4`r(}rPqtgb%fnyQT6xJHBO%N;b}hvrDtOd2Ka2y|!;UMp za}xg6ky3!|nX(k(%&qqJHkRUU498B*)CO3W_ruAVmWsC5*^PmcjZB_Li?EpY{_Hb0 z{EetQ`P0Q`JdBd+@Sf487bK5wk-O#;x$dV11GE6wuNMr1?jvm9y1c6`Om&UY>fznt zpZ@GcZsAeXBp=vAKB&EW!lqW%o({o)6&>fTy!1?8>>p+B zg1F$=Yka+v7kzu1M^f!~u+7^orom!>&6nJHnJiF8Zj^BC{LO@S<%>MUV_R{7QE|b% z*!`*v*%y%o?iLFl`Y1}^@?Z&T%O(|mT+~bnsqpYERYlscqq02u=F#A%@20X=FMX1E z7H2lB3m*h8Mo)_L&tC)26W5}xZMe}=-XMGXeM4Tin{`0^9UNax6#{u{Fr1c5Z*E4R zl(UyA4YfB>wo^a#-lh%>&Rqy1`%&Yr!fBw`gI>9tUY>)VEk&M8Z`pUXMHfIyY<7;F zY*oipn(zB+<+Q>`%_}xRU>%$2dJ60+l7&{Bl>Jd7yUpTB?rL0fdp)?K=dfyVacqt( zaP-%Qq6$Uj=IG`0FWFW5F*+ukMphg@k~t{8OPwMrcQe_=u_XQhusTY=Ux_VHs!}ND zRyThi>`?Vmr>^WroR82G?%lhd?amzDlQk_L>`(Q_{@k;lO;@JL>Ga# zIKBUEg&9PDKRRUUCV<+Dv>^FN(9)W-z4tMnYIzE%nQSIC!}1&2b;y+%kmcJU8D zhB8g;f1HN#@g`oR5Ev8B=h#PU)!FsDX01PC70?weQgNCg+DimWd$Pl2IC?Iwy6Hi( z>}Eqb4{0U*Z?Joce-Kg{DPRRC*IFJqk?^@1#p`@#6Z-lO<#=j{`#RZh3Scg-EjJ~_c4E--|u7P zLJ#SZKz~a0m#hf}L?s0EQV@bXd8W>9U@M%a_Y^1YL$1FeZk5cv7L!ERr;x6qi9`X8 zy{PCyNoSX#8pf6|n*4X+@~>8$l?R!Nm82IHaVi%FjXZOB0_ND6%lUP=#Xdy4dm&3Y zRhkS@)a2SjmSm^~mTa;_#W>epoz-q-XVT;XGWlU5)mwH7X)wO>{@Z^&IFpYT3<3EMKkBO8mg- zli|kx*L)N1*MH72EH6K8jW9`hAzwYsaMe{p7;bJ+<-CdQv7cdBP*ix{Ex4ktC-D%u zKAQvE@kxg9Zpz@YG8ZYI@vwZ-Wl$aR#%plt?BTWnf)%CFfeb+-V!c*bTI0Mwhmu=} zIE7SI&zx)c;)KIA?`Iu4U4aLwXWG)m9~H2eV@*=luszn0qyR&}@gs7F%Yh zLrst~letT7L$|_*=EXFZyJWHG8!e>1LC!-=wF9h`AZAJyRFP=TIOhuO%NjwDgDac+ zvr;Qym)z+2{L!AqH-f7=e&w!{-!iUcASJcl;{xrmVfx?Q^Y#0 zG8EoRp(k3dZ*QZ|#VN^2$HX8?mXoerTO@u}#?g+*PBT>zT}L6=);n>ZPyY-z>V6V_ z=w#}Z?;XhuN%^C>o{lL^Rey{FpPyYQgRym5Dt$eO>G`54z0#{K?@9LysYRLY`G3lG zjm2nDTJ+VbsFu<(tbj`#g{ZO0Cp}uIgzvlUGKnYQan-trn#dn0{;h~d^o-7wZX$o< zu4}wHId!V*1jpz~CR^lb&P(=_ZWTv%@g&B(`e=vWM5JNZto9lgLL>hGA~#mZ@((mR z=(wmdLNy-_Cq=qH0V-<^t|GsrRXIp7b~KN_%F8pm(~HzO6ju21q?nhZRBq61&`arx zNqXFEeg~iKm&9}AB8FVbV9FTw)CB?PmaDN03)nYXaD<I#A z+Wox6dGyThMvdP}bh6teAA{uIhP*)isJzlk<2)s$QO`nVzBB@G2xu^WMie{Spzgt#Mo~-xO3pSb!-JXS~YjOY)9d}3I#FYkGMCPtf zr7nHXaD6JuAB7d$Du`nR#?OsMQS2oBTsxzNs7$8hH^!0( z=Ppn)TC(7jMFq@la`Yvo9c4BnqhWQ18oS!QK`bd#JI*FqrE5gJ1|z2l#pC|7 z(`k;sXjNC7S;Qjilr3n*{43$c&EN-|!u6&O6jmn|Fv#L3?a?&srX7V@-r-*1(c*(n z8Or8hTP{Vd7tL8kJ~3b4)5)H5Gvp`|9bvr|Ncu(J8v7l&kW_z#%-zWRm8P&?$q`{z zOF=?LDn@u-7<5k=oG)4Zg$ayP@4&x0c*iDDq$I)_WSxliji^zn*#j{>nD6-}@CE8< zS}%dl!ID@`%!faPMm2mdpae0feQWj3+57|fDmX&Q*0`W7vbi3&p5mdXfYDfEt7i^& z@lOtf&pDoQU&APtY3(YPl;sHWec#63IO*iY!p^}ayhroGx{zmzc5%qlWm~mP{yWiA zLY3MEI`Pz=>RwI5T#c)&I1kljKo%)K_c?7V8G6wNTgkA5j{4-+i2GipUePKfnOMDZ#)g9h-3 zMyDCrM|obCZ^V7VM4I4XBE@e5s5mD#nnwASzh3k^?HG;c_gHtbFwDaMs|O;yefW81<_LndV7Cw3YV(|5?~!{2#=hV03|WZS*;EPBbn zPRWy8%kl72n4`*97?Ph~?z(BTw%wlG>7D%3KP;`_8rlCR`>KI*u)e{jvhy*Ir-9OE zht}o>uNtyWA-U601oBX|8Xoof9);u#Wq%==jtwzZW{K)qPn)kz5O31r`f|=9vVSjs z7HfsS)zc6Ng=&{c^PzKfM3(dIM!qXkB+p$Y)sThFz3-_-TZ{}@iepdeWsqA5nrf=< z7(NGL&L?%Zp;APB!|zRQy(sd%i}@>@!;lQ!A(!pUp@q-95`3)tf;o$0(dR>lAX!q)-*9^UdUDh(u({jEk*U^P-HOV<9i{Fpv&XPKh z;i_0XGN?myboPs!k6Oyf3KYwiIt{2)szii4i7zwqeve^mn@ehI>s1IeVH9R?m=?Hx zxJao}PMFI2N_eX5_x=cbtJmZ_<>>Us@EIf`?@ERY9Lt+u2*4NkH`tV0IG@vXHk;;U0^Wx^Ip*T)mYWUg zSJiR9_4^*cL#0(Zx25>SzZ;JA^#Hn!gCJUU2jxI)VW%PGl|r z-}IE;i;N&M*#2*NG`w4$qE3DP0nCQFwf(PZnH-VM^50>+4-LPe)j+oLd*|O)c741m zp%)M%hY@#K?^*yS0raM~Kz0MSJe*ty$+~!g3zWVh6|uuUbN}5yjk{dZ-jyeb&kx@s zqF~hebDG%c?0wM~TmaQb8A%jYIeBXxA5exk30A3vtyFXsZhLh?D_ZmRT!89|U8a`q zGL9U;$NJTaehzyiA;@+ll%K8qU0>-5%^`7}K-3HRi$mHfOCGXJG_=}hrQNKQx~fnn zIbM|luzZCrF%}oKSIHZr)1NltlqO4`z>u6q2SXB&QzIlIj>_)P74?uvdOe0G)i`rez)wY4mqe*b~61+g|0wSv@7h z^Up?&z-cfwtRANT!FmhVhiN;Zp`;&0#sRJZBqczj-q%m? zc)GBD9JhZH1amCM^#zYP`o4MyLxHYIAmc*U_$?=zosH=ISopIV zHpSz$w>SJ}uomUkcv4BFyX4*jN3}`R0Qi|yPnIUR_)AO1WiQd?)(aFh7$#2Pbp$kh zEWh0zJ%zS^S{s&l9Us0?F>Qqf{#nz6A}eICktCJfD>sheMVT=@GoUw1;L4;KPd{;^6?WgvA@cqtwS zpC>EW+mvm$&?p7k)=p}DL?iwRv`VYQS5BsDw;;z%`UJIaUwIlvnb1l_5myQf<&)cT ze5X3$jd*8p5?_})$#e_UN067HrGl$T3PO=ofeRrXuMiRA!ru1rUq&M9YU9u#0AK+5q&#Xln629Mp#OEvOSTRMhv;6g`mVzx3{ZsM^}L3XaWJFVg|Wl z6~dT`*wT}I+zUig0rCK;X95ISgQ&y4`bT2FA8@Ei{j|k11D_uBqI;1}WZBlTO83Ws zR#Ig31|fNAoOR8SVVWB7JT28!n%|=ckxbciGreJ%2j;&kTs4RIfs>~*!}=|!Je~s} z;z=(*y%Ka;Yon5aI<4Fi7|^^kL~7d}^60;x$bjI#HE$BN)%pJaP{I!6r75KA65hpE z5xN_ooPa>STIBC*5(e?-al}bB-}xN`;qf9Uq!BAy)Y6iIuG3a>tAmcH6+WbY>-hU@ zZ|?k6S0s#qeLic3#IpF}cs4bw5T1E&bb%|w>6=3wBh`&X>iA0bVxuCHD0K=7E0tz) zjSA61~zh!y|!K)kJtm&;gey?Y^SzNb<4V{`TCi$4Nq3UYWk{}42A1&nK3ILeF? zjLlp>U@Jo*zRLVX09Y1Smr$3_%4S;Nd6(2mHcVV<8+vN z>1Z35MbXm!z_WxYZim#Ld*80$_N5;l^mhX;S2bn)kvaDCtq1ocdO)eL1wfz|!8L;(G}tQ!t(Drh zRzy*fd}-wn@;`69bPzhls`vQhQTI07ZK?MP?ST|cymjt_sy435yOPH&giib7VBD`p%~kx!rH96 z)U`x*?w$D3U96sX)VT_R)&3!&D+`mUw!@Lmni`x zt%>Mh>q>l+0=q0Xb^{#n8M!^I(FA`y5OeBSVdoH1!Mn=v8jK@}orQyH8%ZA*gh2EI zE6pvDH<2#PE$y*U(T79v99w3YGf-4j(7(#ZhCM?SNDAzrX8AhJAYi3A-%nQbvm@?d zT@QB=q<%*Qe>6`B^5Rvw3-SKGI*qqd<(^7%Q78`xFP zY4;^2+!v{-&`akDeq)_JD1@W$kJ6n1xPrj$lPoU0!*50M<8v`D)Ih5{-!8p7`_I0k zTLJ`PPWbnJ74Fzmo18-DepY)FZ%yitL}1J2`1}DIj!bSZa56LGr-=2t_@i$$U6WSg zjf>*fkh!A`0x3T3T&3>KX!?u~e=$#Gd~>~SOEHD1s)o|;4;$#W-ej=cGW$uD@_rSJVm!CzQ9ML`{*@lzoB(GK$_K< z_+Ia@3`bgeLSzh?fU1BtPawsiayzg;vl)uLdz4 zKRp=s-M;F}QN!TSuXT?g2;au>wu-Ez@W4X7_-lxj*p#J^a52srT66W)`z?y7{O8Hx zmGf2**Cp6T771t*KKjJ5P(SFVU&qx{d=!#7)$ofuFs~lhh|`}Vjka}#Hmcp?c{I~m zlmjcYIV)=ID546RSIg3PITq#77E~W?Jus zL9k&;m~!ZuG+N%<+UTu*Bh6Rd*s~^k)y@wX0|$ZUdq9=#k=Uvg#c67E&N3aK{Y3q?WhEc-=Q6K6 zXz|DWp{gui=-)g~!JlVWac6DLe`#edU{{U4Gq~{S@8~#^7cX_P!(gSjR&m))+|`Z# z^idHN0hp5y9K_xQAVYmW>T=VHwB@ub<1(W7$Ij zDz`^DD}7pqZ$q~V7DPMM@ybDop!!2{l$4Dgq4-P^hN1c}keLe}DWnGB2_0>OjVT>o z^qXUqLr}cvu!aYV&5>*-`=x8iZ;Pv5bd=*+hJ5Pl$D*KoQ@!s-r`ZXvEdX_05E+)m z@^i#K^&bx^F{=ne?IJ-V>|g00{Q7sXl$t9ad{Ur_Xz`>c2AN5Wg)-WHz>;)yUuI7? zH4oWDV;Uq(vs^xo)Cft@*P>$crvMlj3m}YfhbltL3X7N0l-F96f;JZhf(EY03~_A9M;kgXj4so@1Gu6ED$=VWgQ}~eQ|n^ zF^f<5_JZde<&EgrYf6-=QI)?OKSM zbu9U&fud>Ar5Fj0Vg(>bsL(W&>zN~3oh$8qc<8m9aBD%(kylZ3vZshrSOs}Ej9f5^e9bkvpZ5WwU2isAM_>nd!ncNDU)1rWs)LIqit24jRTIQMPb(zXgT}9t>4^XHWC-U+tcF_+^f#jnq!!Xr)x79}6x4-$u_+12lx%iJ|ayv{sNle`kO3$UJ zAL@Wyg*N019jnVMl3x+%0AK)3U^df$wWLXp6oyT-L!Sny6wIOZLGAUd$VtbT4SwLD zJQ?-2q68HONVA}cUQA=|=Dzi}@h(eV7PhgaZ>t19a#wG+_X5C)i+x)4jwwha`HJDc z#6*_~n=y0H1obUbW6Rx&brsP>ss0uXOEdrwDjh!Ts1Q@8#|J6r4=DL*&f1bZs5JMU zet&)={GO|sc-nEWlJP6c2JS6wKvT0G?&ptS#q2f!Uvwj{0<84$XAC3UWui6Ob6EhU zyHkh_sT{z>7V!cUFuR70e~&;5cs?sNmt*z2ejd{_6W2<c%v&V1Lh$TKxh z&3M6KG~u)tA8}sbjm;r}iprrWHhBw|oKVHjC?Rz4roPo^=Yx9G29~p!4Pb)7bNjQA z7`dpa%L7j(Ksq$U4)XZALJ<<1@;kM&*!z}3POUx|6W{y)T9)?sRb__{L=>F+q+|aU z@&(w8{q5@rf{2Lh1I>_a$Mi1VY`}A}7=yRbs5wOpk40#tKrilz2y)Dx0!g{(D~~^} z_B~&Y#y{y+Z8K66^;9uim~#%z&ZB%6LofK@GrSmz+6?u3i?Stkj>_O9iA4y2l>)(7 z16Cs7hkV>BAGfhKy`MCBx(%z%kSKlpuIv}v2`zRw2n4+0QnDOqycPI%9=GsJ9vAJ= z509=0o6GK_`82mkmG7ekKKlsheJm;`H#F7^) z*ooB89qqk-deTtm4?wj{(|x{|3~CSkD9&J6K5j}Xtcw%fzI1WY$CQ8aEYfmTHR&U@ zC7}|47ix6q9exgC?f0vtO?HePbb3O6fXsjg53m9Vf-DKSPa=nw)cY=}$ZTPBw`4QO zK&xTkL-^nW{6c~ZcDr`sHTd?@8p-$ZA|j$x1chSzEVK_50BiLo`^ZQg&L~OqhqRUm z6&4r|OazgKy;`%GRX|)*r2uYTnxrpU3Ma?zUO?hQR3&GU}wxX@a z?^{P5v*DWUDV=3#0#lZkl`y}aCpT(vJZ42%g!H6O;7uO@f^XBax&?|v`7HwS{1XM> zh~??4$^71k&Z$2hvl=K&gE+JbeybU-!RHRoH9tc|!!G%#Yp>5(JI<$E|7sWwVbe-m zv+7qgGmcwT0tBNwg;S!?Ta`V|e+%*`>A|+=$TyMb!;JYt7g0w>k!w{P2R>6`Fq4Ab zK=tSrp&EwqTRVq9lCD50MZYl^x>BqPtGm7jT?2>BA5JEH`^lI4KiW~qKwoqg!>ZkW z!y-m)R_SmCAhZ6g^eAr@(hYrbrKVzFCsD0yt^K8ds$Q=XvQtdJJ~*nfewJlQtdn|n%vw7@$IKlHJ2{ChDI1anZEHt zd}>oL+#v(Z_CI_7pBCqK7>oEiv~BdWPA((By1v9x3|Bul5gP2a2?MKd%-o=z;%R?& zG-l#wY4kB6Y|&cXIs3T{Cq}zY8psA9E25w{bK)G!SOLVK*1pDLjmBEJI(U_h?wTk% z2JT0X1)814y&fAU>&I_1kH-B5LjS{|?g*8A@ev_ju9PEXmHb}uG(xMElO6mx>k!qG zqlL|+UR?QKIm6<5cYnvTG=yJ#Iu)=1dKxlvZQ@E#QITNI-)1e?M%EY@_19OAm z$S}EuF{bRZ$Bo}5&0&V!6jxiKvh|2x|AphGB6V_uWMN%8bU!dZL7_Ey!5?fW9~#NC z(X@J^7A@v4M}k?qrX@C-3X1fVRzDz*I`yHz+;=q_3Xn*}eO&XD0u9OsvHBHcAaZ}oj%ulzWQg)rL>+~YE0TX-M2q0Ql`u`x?pO0&$>$f5fw&ggmT0fi)XEk{CarP^|%oWqQydQ`fw+DC0nR{c^B+E6QMwX?Ib>O#gd?rCzF$%g?>Nh!a)LsX{8 z-&t3xI8x~-AW*)#D*@o5aQ--f-fhUJ)VPVYe0@X8GL{luaKyfBJe;9Xm1gZg>bts> zSW;m8%yd0f`e!t?E(PSiAS1)NQgacZ)*;B8r=J`!0CnK?&C0lh{vo>K!lL?Ou|s3m zU}toXJ_Hq%Cerw77-V<`#Z9@52lzhBGj}NMr}p;`ENN{{|Bf^v0tnJ7wlSR%5PKB* z=xhFBbfWM`%40?qk>T&uu;DqR=Ax<--IO-wkdG*; zrSk^bV?;#hO7yr`eTcGI>(1{D%^H6Ge3m!pqb9*`s*yU85>iq2QqgbA#CayRpnUgX zDNy?zJuwc>Mi?+@_i5Jsl2e9``*-Sx2|)L!ID{KPtS@;eR1tmCDK-*cK%pJCUg{tL zUGjW1hhKBLG@lX9S64r7kb-%OHSw;2B=K_3ZU>qc?lF0#s<`e zLAMz(qwiZkpnBy-qe<;Llxe0yQ90ZZjK&!Qxnvwd3I70S_%-v96kw&onS5xn0>=iF z>ibNaU*ZZchFhCV`oSnD{cMspV>|Y zhQM#yQaPG`;LwR=;agwzk81E_Zx~3q02K@|9`}*}X?;)2G1OMpCnro?<5pVtv1niN zb7b)oHB}fw@I$0oU+SO(Dp2{qN6^d{Zgb;<;2nTiI-#6sX-XNin*=OTX{+B!BLqEB z&;^hpHXcr`vmj5wH6)hgzEbj${*lc6CMR5bwE-0?-j(~w6IA?M8De4%;C%MWsy(s8 ziF=<&K~+e`6NhtB!bio#D{f()`@wTa{U3m0-e7HleBwFghEgn=qBr4nEv(j@za1PM zMh2`U8IF~vDB}j`0`$u27D#IrtsvrW>9{ZmdWxp`kasF1vSAz^#^f0kQ$H?Gx}|2RN@S(RGo)-KKmt#CPhuscDamI z45MR_bZov(Kop3?*riw6kg%`CCY=YW0jK&|xM!bCDrqyKxf zEBHyKBWSIy!o_5}&cz>-(5!rmz`)FyT^qICpcDfB*L-aUBInR(X28hsUOraN<_JlOY zq3S#VpK|X2o|#=dP`!elovw7`kbnVe2wfM~a$7OcqdsIZ$K3(OC3WuWfs$M$$+?3y zP&&5koU1KMwaE0CicK#%Rc`1KRYM?0?#qhgm!`~eP?_*VDKqk@B05hw`$ThG{v8E} z6lj$o{hb?!mCKNr;IuzO)KZZQ$s|gY_5uRz;;5x!RJL>k>WBvN#a>`)-z3*Bh%F#^ z32p$=nz2z>@!a@YWF1KYWMKRwr&N@=YI98u2_c8YP$pWE_P!vh<6+ z6ql7NLg6AT^-`&pp*3oO>Pue7)(~*vrW0bGF$mB?^9E4x$6j=7cP!!_43tN#4nu2J z*C~&}@o&=$xvs7PfQGsll0DJwpX}%=-sYKY!%DD@pP`Y@X-0ptMtOvBI6??sSSpfF zw?@rql?MQ|mRs{eGYk_EBu8jR|A)Ev0BdsD{zgM5K^Ai`=WcFbME=hf8TH4=REg*c_)*}%$nb< zS+i#5%}m}k%lurYva+St!FX?AFbK2Po!QE&K99LBEuhv!Q%Z@MFpNqIrUnlrvElM< zWvC90w#SpkyBdjY@Y_$qCc};F0$Xox*jFny&uS=9!ofGR@4sNW!ORT;O!V`9zXZu` zw}!vsOuZ9JPs1ceetTA2d4Q~pi1B*}JD$jJjYy2Pd81mt`D4(ia1Ra-wCfXjvKp)$ z1F*TIFsf$YT)=4Nptd-R>Hg)J!(EDYZfxq9qi4?XG6P2sM@XK04#S6nNSPjxjRf~B z3#r86l3FSB6BE2bVTZ@C^u1EPk&aP)P4a=;kjK-h2JTn4I!aGSWf75VOWdEW+WiHA z7DYkE32u91R^!q^PZVqBNx$U8z9d7w({=(5HDhbjj_{r5eS4Fmlkp30FG2gg^g`-Z z)?#XGZGQB8Wx!{l$apU^WSmF<mge9 zBseSNO$qZ?(u@ugmrcEWPW6C}z)qdd7}h53?vzQ!k`J-ci$y$)|Cq{+^C-LG!ipP z28&(7Oa*T-sMJajR5-!0vT^*5<&GR$aGZ1tAHt8BE3SkxCdaKz8Uz_?k>=tT;}$-o z6@0>li_HyR3)=_|vFfFbeX7om4*lx5FxZrfyWs6ciJPcQ*!KO=llpob&u7~FK0~oL z2zX(x61fU`-DB1=C%vQ}W@Vh$hzwwlJ23VtUY;;_Z+gTO?=4~lcaYytieAOgOU0*p z7)7kTBqZQG_PApo8c9IPktAM{O1~!e#EGp)c8DwBr&mZ(q9?P$1pAw;Y!CO;I}fX^ zv}}QgDcO@>exa!yZpdYoP#`Wq+j<_U&4)nCb2VMcSY{Fg&b}KIl;S@5xE}c>g!>1$ z^&K9&bSZmpJp4&t2h@p_DXX9lD^Zg*CAvwa%ONK%N(D!vEv>Rdt=v3rl^i67TdRwo z#PpD^u=KM&Bp7q{@YzvdzHQ=zeu%XGwMh?wSgYty3?5f%@JPo$Vy#ne!ZFj743mk` zBTBE3^Hs(!%9GS*o6kI-Szp$f-3Mp#qt{#62OY}~4Pt6>JKr&RA&b)DJ@Crh+>|!7 zM;cYZU@X!`> zzEozWR&fqMV#h0Qj3dW?cq!l0!Xgq4W+4&j;v+MEI7>fDhcm01=$%(%4RXQf(fjyA z=o};*+=#pR)Kx&QDh!4(OyH=W527#P&yvw9y)HMXGRyZpRUhx3L9$vF6C9iQNBA~| z+zxe-ONq?&IGvX(+-`nTmgjt*RNWvdUok>bu#c#u4GRhnjiVO$i-#KSx~*Q1oMkPH zM(~rrrN6~gR=lu>SN^@y){HSe!<7`$P;U=w|cCmlo3b z>$tLCba^Jpt7V_aU=req8a+{eR*IVwDoLDvcddji#}&^KYq7HCHX(?+Nw%xZrB^fR zq?H`Akd~?t;|abXQ&+M2;u*7HJWMSBit`NT?n?#IdpI%WSa>%;AFsC?MN=5gNz*UA zh#QY$z|WR54ZXK)&ID||0@YpLw@i9|v6w`9jG3yBTkupkyXYt!UiZLW7W>nkHzGK# z1Vri|NrhsWMwvv9DcaS)LtFY|eufiR!Cj3o2jvgC@hKmcB1J*AA0z271ANh zPbMd`NDSO@m^Z|Ff(cZl04kKjZonMx?&4pUixh)Dv1FpUnV=%aszZo?liCreex;SP zXQD8`!0t&TC56}@hZPNFXNm+=1~Cn7V<~M4hDN{ngee;Gku}49n1Y|^6a^A9)y06- z2@0m(tt^hW#Csur(=P)gjEM>Axl!b7BFmFXLTr_%%D%{jt0MCu9`^@E-8Cu^vbVK& zJmgFCIkrXp_{-&WZgxVNBtcm%@2=zAqUyk!0#&oO5<7_57v@?sn*ei>F{@~7rHf`da1+?`B{0rk({nIpD=Py5h|Xolawo1&u4K81PBMeb8y-XgYsu#Nk18C%tqMu zbnrtJWkHxeM9glI1lR2_yMo6bGCzEq^FwCBZ1mG>MMF%Sfw1%ul{TTrPa0D#jHmU% z?W`@sBOlD26+j`U4~>Gn;jf0t!t~}?E8NAB&ZVRMyR#It6y;Y)@8mJ)9txdQl#85_ z+^bkiUDbzn3*NQ!OLL~u(8XL96V3Gx5cl#mdP2UaZl!5-ld~;EOXZ>B{GGu36x~Ys z1L^$Uv}uSua;i1#oB7~IZVu}f)%$fDf8`rgcw@BkS{>}k=%Y}b0m#w{gTufIRYBIp zCFrZ;DGMd0oKtWuUzx5Ef?$-1RGWq%omlr`$zc--^GkbDV0(j65j%3P9JcJr`YM&j z%jNB7BZ&?WG+DxkAVFOqjY$lHI3 zGXfT$>lNG`{lVjq=J}K#v}$==5nxnM#LtY2Z4*k&f&EMi@;lak3z4Rk#Q8EIA{5Oa zuv+i)hnBA*M2)d#aEP*U8*D*V-e81h)R)}==li_ZG(k=njm-L=F%>Z#?Qza{$zKY^ zD_vJc966v+-rut6j=i1|VKd93K000dfTnm7R$8e~A~Gp+aUbJ{5ODqg&HYD6=D>8C z`)l}pBUCt4eqhxKxJn3E5ODL4c7MZ`p=*NC& zt%RHW#gg>SP%&M}a~UT6W^(*$YuOv(>3E`qlo1XKcO~yPz9GCWPt{(>blU^mlP5!Z z68<6Lv#=p;JJD$*VQZ56t*LD}M-YZ4rrcEC%Pdr4`1VWg4{1TvSDbbb$|)2_S^DH+ zrQvfste^^HXei0UA|@lBG)At3#>MD9084Ba%`@?2-j{oViDk~`eG@~AQ*oY10Pluk zG9d^;GHV|!MoRwG{K8UOAfqt?GuAqnxo`wuz@mo7u<%ZwP@WxI)DWXcmBFfERMK>mBHqPzvJGh974y^%&ms{JTZ2N;yb z>6wK#0hsJODa?2e)HUzls!7enLiYpRHR(mvCDw z*NWGR2BB*Vx`B#w!lwEH3L5yNLMX?wMQgww`JSb(QT}T-?lTsl>Sggy*IKI$Z1N)A z(*k?2n8$-Z$&lLxD+pVu;omgX!m^X$E~-Y z4C3JI0`@Z=qNW)oXOU~w*9-VX|7GW9VDX!SE>=5Id1B-hc2PQi$w z=#OsjAdQfFVMU+C?q1F6c767}(Q1>{V?L%QlS)gti-H}sII*}6$n9$=tcGA%!DANJ zliF2%p)b*twXI<6n|lpmnNxU3DFu@Dr*FpXb2C<+ap9#awa9G5Iw#POw!7^j8y?~q z+b}R2n2RXITJ&}5^O4iWf*yPAT-2DIJ;Bvb!02ZZE+~8xd;`N`N5)a-1`EVoF{`Hq zC-+$slBOyY#Pw26=5{u>wThy_WL$ts0hD&$UkuO6_7v&~}Z25IfoF?#tL z9Ab$*upcS({070=mj%xYzORm#pfsGIM-wq=_(;s$_bPJE%Nh6tZ3>*#-rv;qO&Cho z2m)ln-%dCj^smvA5RQMCmA4=iDd&~JWm>mzj1g!0N~ct`i<%wSA*0?PrDs!`b;PiY zlQo+^w`n;w$4M94#`R9QRqh7arc#%M%>4j6Lgq@jnd(5L@OOR5Be5tC>1g1&CL-X( zCQJ|(@bnWYIUJV!-*6%S4G@5nL=!|E`oH1&{u>|wC!_xzcF+jGqRIbB*Wv$3%v^#_ z|2t}!43GOSwU_OGNq+$2v;SvZ2mh7sg+^5WKj0(_cOYtM5sPR<_+L`iFaFg4Bu@}_ zkmm1%r*LYR^~C9~DB)y(r9vs6q>nWM7=<*A@e&t%{(_PtQSC2>vhYb$`9{lR&hZc~ zi@JZKv@HB5gSz$k_J2{#Ka$vn{|y8VOY4~@2O`x|uh6`Nr?vj~RWYFW4_Q0Pnjq>S zb<-w@x;xE*Kx-Y>q2U|<+kJxut#;G!3W_$4()@eGOwF3LA-qpU^M;j;!Lcg z5yBHfj&;UX09ZYMhj`}(_|8R-ufo;;6j#$f1j5t%OCZ%fK#Y_woUQ2wEIDKOSG9^V zuX6pBE+FXh%eSMLdvWl&ub}KF~le`75vG0osH27fvO> z04<_!I_?k5KE!)2L>1Q+gv_4>T}WuuO^3i~lZDZUdL~5OOmH1K`4_#D0IiG4Z!)+T z`BjaE{=k{4Ljxt|U42`9{X4GI<0#z(F$Bbz0EFt#(1=Q5^dmzwqIm}K{THVp>y7%beoD=;68<7p2*Oy6)$7X#Zr*6mpfU_plc!#X?|ah4-+6Lzt)5 zC1^<%4m$>??2tVs-;Zxa2lTKy!(o@8i|NDnCd=>`$GUNzCR!WMiGewZG~vPS12kfy zT8HU%$_$CPqPvMYg)QYx;OD$;K+n}E_pKvw=K5BE)dwE4ukUCPHC*;xg}@Pfmmmj) z(CzhBgy&3HeSyF0UxJ*k@Gd;K9^-zCD?#sGd_g=%JBm~w@(LkU;)u7Gpz{IX zt&Ge$rmlR~a`y2Ogy{QXwgZ@zxdhoHD|Sq^0G5qc$Dh|T1vIZSt^rtp6fQx>48S9LF+j{a^@B+ z(Tw7j@FF9S8hVO%2`afty95EdH>zlhy8r~hxn7Gcq8!k*{7N_s(AZ1R9LXi9tlRB8 z72XCM$+bt9dd^20)BymVr(9*GaH9quJkNimH2Lc*e-LoEbEWiE%Hqt9_(t~(P*~9S zpvm)}nL~Ah^SFS*OqlJhsFjFpDv~pPGPc~2N(^MXVC?^uz1jmX#OT5j6kn^=ex4k3 z3HnabL9r)t1$UNtQFwNAl(WZou5}i=BR#9!s?lchxCL!;Mp{h*-jTV3)yEew+COjM zCVgbA3*?x^37T44xdhRl0B!LSSm_y|KGS?f zeX#%n@@-y%9JdOKM17E=1LisnomfA6q)(r^NdpLUz|vE@^x6DjME#>T04Y#)fbY={ zzd^TWfZytX?17@4a(02_FR3jBUBGE{X!tK$XMzxrqpM9#%Dp;d@0-CXV6PX(x%-a2p$2+&62r~hl7 ze~$s=^Y^Zkb1oOiF$NTlvkTvk>dbi~x1HKQ_A`KL8&HO%EkNJ?`T}Ib_}3Kwn) zCwZP-1Z}+rB!BD&oL|-U}d1>jyF@x$1GO8-?4xVnC! z15J4ef(I3~Y#w~x>1 z+#;~Pks(De0(27ky4#Oxte%Mc1|s@XioX$sht;%dg3dg+M)_OSlPZWZjJnRWH2Xl=CV+Nerjt8}`G3Hvcu7lt6gP!KQNvip(n%NJ@sYwf(|*24{~Cna_l? zCYsN`mUyAxXZcvikIV8+O1gd0KE|y-%7X1`6<-8a07Hn_uqYV}xNUjU`qcE+?o~4T zMh_)`n9>7FS$=2neu%2!r{kK>BO0q`w4Wp-dkDO)F}6hgq6CPU!infuuSSU@i(y8I zd(u}^>9{@G2z-^6J;nh5B`3g=8L9Q2i?mHt3hZ6Wf6SBJM}em*N&eYlV&#J3PmV75 zl#oFj=Yf0{fTpnoog(V$2Fc_fwg5mdGnAB}5Aq}%d2<@n;sI-t z?wpg{Rkf09SCoJY7bH>mt#QCPp=Qz2zr$Cvd=)Js%j$|~z}}vpbY@9VHQz&)rzsGL8>(XFnjlpT<-q>N$h0$vrqrQ zUslfU*&j>+HxmB@JO==;FzK!e6`W?_0_fXy{{ZCq2Vk;Sq4>)`pngXt=8IyT0!?sr zU6A|}@HbxFelvhUjLyR?OjP0Z?)jZn^eY@j{u>+G{e0w4JlU&2qVXk&511qV({=ER zM*ta=lB|z@$Ul*Con#>ADpyJmI|&#T3TL`vD##>`sPHOq<&amt_kTkBGw$L~)H<{| z5Z=ff=EL1+T)fJM$MiG-7Hbdte8sQH6UFr3sN^c-$#Cps_{^UW|LOCes8@omm#0$T zfz*jz0q88|y+C53 z==i{s#O1{lQ2|61mR%IUEqh8&iR5z_vTxx(A z`85sxnh^gdT;P7|KjZyJ@w|s^c%#i;)dvy+`tr}w<$nP00No@579}w;F|e>PaQ05F(iDw26@my9;L+kg> zKcbH>W;f0fk<9pVr2pT0v_aC7lv~ID{}fJ&6uAg`2i$>5PtpUo#A_NM59-2yG?HfH z=mk!?KOTB@V$JvH?+OKi>~ilY-^^86-f`67Q$*F5IJs?l#xp*gUZ(?ZA?tg;T4pl85b(LDfOxX5^zBn^@wHnz`Ox+*Jrdg~tkslk}#UUC8wg zyT1Vs@B(G&h%FKcQm!gv%utQfe=eq{SVxunrmaE1AWUVvXwmNrU%s}3PMJ_?Dt+mB zsfp`{j{LySv2xk-u@1fE6h-854s4|7%IoU#b*Xh3fhspf<;f|{?A)AGKj)0qJ?nLh zuy$)Wc^WyqcX(51TX=d;?(TO%rFr|4+Q1QivzKu*Umvi9AP8sn2a2i#kg-2d2~)hvT>u05Tv?%K-F;&wVW*n$NP z)tw7|YUD<=n0S4Kl^$JG^kKMz=5z!Hn4m>ZDVtFj4=m zi{a!#p_^kP&Rkb7%8i0~vD#n3Yr@~9n8{ZS|M9x}eBvMBe-Ai!4Od^is=^SAWIMkd znN;-PZF=p0k~(xnmj8ZD#hr0Y0>Q1-2Pa88NIy-uaHJVDU#aIJy!aw`6v4U>RPdi% zKK01(*C4{RdSBvAla}0)meTNW^!P?~*M+aos7ACoR~`9@uWwb^zKEsE#m;BUcJv80 zTAvM{x&O{UcTXqX(Fx_U`q8(Yngt8W^k1Kr4oN4*gL47GTe4GqUi*}X`*B6pxY?v= zr_GLg0)jvLG#Snbetvi8dW9+|M_huY?-Vskw&bm5XEWu{L6KxIW%I?EZ@4u_W*QAB zuSZkc&xatA{jeDo4VpT1>fuM>m>Y-Gus6s{5DiqgDvwYeu>}^Mr)Y%WraE`+-3!|! zZ?tcp5gZ`fiM2aobLTi}J)njdjk>~{6LUfh3Ouh?km#P}->7YWlMu1*)zdChDdbHv zCCL!AK`Tag2x)W>$_~cf!h(d%hhxdTcB=@c*HUo6Yd?V^7_mKY zkNK$0$vXm@wVHJtvf|(D5R~i(luEHENcOh{d6UkG3QtFhy7I9q$GxjMNnV1o zBpcTiBqEKk{~Ydi=>9A)&Lb@ktR2y8etmxY>`J%dkJl_$!iT~o50Grii?<7>x)s;3 zF6hDwY&;eg!%^&C!|w|w#IpHbBVoBgXV?xc)|&1VfG(oVIQs8?x_G?Q0Ig~u)E#_y zNRS=BT#b0%vKLVwCD*Vp(P)u_<83!$WST$~WFt*5*8o&vIfb#(a-;RTx9)6IURmyd z(Q4w9d(EkUSxor)FAd!~o7-4c?h+p(ye`NAPL-0xp70>R%#+ZOy3JHcix_JU6c+eb z78B^-@IRNee0R_p$Ve9CcGQmDFFktJ==d0Gye z9b%Slt#mk>^OF$r+H3a|*&B`6%;8%-4pQzrkun=7!NE9i2C&+!e4iO2jBCRWQ>UBaaFw`;mk)tIJ5w7+4-jkbJ`Y8 zE2|PS&EFgU0vn7t;J9fTe74e4KF9jVG_(C{*O^PNU}Tnvy=Bk}iPMFRkQ6Z0(l|zV zpD4YC6rrJwIlMxFZY_K9uYa@JqAnOeBIw^zuyoG&2h(E9JFlSTf0E1`x6e>iP^e7a z9lEfQwlO@;*q$mD%)A8Axtk_R&wX+bw!L@8E8PIOw`dRlmwNABgbVq%WF39$X&T@5 zF7j1CO&UDopNjj2S~piYAb&%9RcVXw0%B#{{%%uY;fm_0Wnr}85g^GEN3bSsRZDic zbZHH9&MUqFrlzfa%#gMO^6SW+NcVTI&*40~ODkPNnc!qE zUQbVr0zu=R1LI>X(#RWmy72Dsr*u|V3EnzQPoAA@;TKzIo{m-J(5i@z@K?_j#0P^^~4vd_+^CZh+gt zO!+wdJWGs^qfN9aI>_ z`p?BC%E823SZxxx?b33)chj@j3s(I`^Q=Fvv(ACphTD8!M}BV9x)GfoK5p+0JIzo` z2r<`4_hXdZ#=i-L(|p_JOIIUBu-P7sM-ODu;cqBZCJvZoRn&N!TS?iluPP74o&7Xl zSFH+QGBG->OL&n@9>q2crL9j`;kHjc6^Rg*U$$^Y2GGoWF7Ro0=oYc^U0A^Ms&$O` zJeVrTDW!zIyLt(_%~%r(%~RVI%uzp*U$)5=PA;$cnBCr*;gIJfzekVEH~kctNMwad z$4$|R3sL?wQ>pAf^}^bQ!>?A@FN%=`?v7-$Tp!5B5FAx13^ZqwC6$$DN8eAWUo@=| zCmUjBbtFRPe_*2^Np~0)6GDBszJPxamtOpJ(3!)B@yVHJr$n@7WVkdU)2h@#AWn~= zmI7CEU-+HM&KCqYlg_StIJ*8GofVn2@F;^&NA^=Oj(qKHb@`DDKX!i?!tu0d2Pt88 zUU~*pPOX2tY0?;P^|sT|c#+jWnS^7M(6(Zd2cw%FH_8lmK$%T z_c}a&xk)^XFydgb ze1=!*M5X$=;MK#Jzp5keMa|7?hZNlYG^&+B44s|kYKf#aWBey z`h%XK(|=){bL)GY7n(eTw9!}B&7qXfJ6TSjy$!J?9U)+b=>kh1AK5E#(9o+NqL0>}TZ23P>esIrEH-$BEuXhq{`!Sa__m`K&wn zk-q_xHhVWx=b5w<`H?#s!O?B6qZo9nSo`#7i7aPTgl>z43JVLRmfsf|rmp${Hfpl@ z$l5Ji7M>x}875{e=1=`8N&sIqk26C|Vpa3Iw?p2#Lzbn?N5AS~2~FUXUZm8-r!y)x zR^xs5{X;><`y6*~O69=33QS1%`Q+hJk%(|RAI+|^Hi)hgZ{k3U8`W2uT`qCzo2AXJ zPqVv3geB5#L&SK<76@JA57@rhbVyn=b-h?eDMd^$TdoI4uuvr>j*rrTuUEbn6Vit! zfMK~&=3p{8(>Boxya|d)#h!J0$sACLR>(6{&zgDMdo#QIwSW(VDO=CJsdsKN);gHG zx6RPZgxq5zP0ymQbBf+)re&04j1|GvA}KdYcDYrbeUSK~ov>sJ&_T)r5xntGROjks zNu$s#Y-Ec98AG`qXI?UA4ptY;g#O6mi}kcn4BO>7U{TA{Uyl#-pF1Lz^HPi<(yGen zZYJNcWCH4By2CO%%4nehG2{-U zBWI4W&{nOw1wSS5zMuTuuA~0|J0{lDN3b!9t-QUCy)jR`{7!D1lS3S<>^lzEt&qk! zDeQ)IIFEU@M|kN4_U3~5n}JBHUXJmwS$Uzn=h4U4wOGE~s*&>K{m}0CX(d>xx{Scy zVm`i2uy0y|nT)+|cVxTM(foGnYgS7}yRQheoSu>Gr(rGN2TY#TNnBc)w5zV``9#4`r=GceG?sB0Dw;wl?l(aG6^LVwrhVB77eHZI@k0Ps~g=N;u zWr-d*;V*Z+y(mWQB@>RwC7gw5M#odBEo@uay!&py6I_jH{XB7PFCyQ9eL-CG#^(r4 zRMNf*QqWkMm&98$Y4WYok3Q-}_Uy`@BBd=OoA9oC>t<=FJ0G|W`0`$u!tYZ8+iXH? zezD#?CLbtuZd&x~G^-Ng^CE*Y-pHYCeSrg?GThSe*>}60*?i?Z$Ma+D!nZ!1_vTY* z#Ca(}U>v!T^{CXxD9856cUS=rz)( zCMm8{suMYMBLuq}c_A$;v=M4mI#qRFY!eSU)VUqHC#V&PUy?Anw1x-dv2xpWqgzhg z?_7d3SjH)3RX3Pv4G$wMNqoCJ@@ik7#@-w<{;@U;ev~~34wtog6Sg&w;5~`H&3}Qn z>kUQ?*um>RZlMs~;G9@ib4b-G?ltla>yo)huOEeHtmCVOo?LeJua{1n1T_v6he-VE zFF{G7BjklU--;6?WxvR8lfS;L6Gb;{$HuTUwr*_25>r+8RQMj#l%Nouw?_4GjE{JA zcj6&Zpi9C#UeD#YYdyK}<)UQGyUM!g^q~m*8WBq+$wqqy?EzT(GOc7IZE<)(c)NYB zh5g2xi|2&$Mw&#^QtB-J;@9>D%5-q-?7CT8HJ3Pbm?>grIJW(94ynDB#*BJDa;cQ{ zk3Jmo?D!nMRhr^UMz9xdB|S*kqVw33Rypk38?M_@J3>|0#6!i7Zce^NtUEWvk1M<8 zlGK3-P5|>3xUMvWGa&2> zi;!tVHJFy2?No6B%BA?=SlHHbIuDpHlaz=vR}E;w1(~OyHAb%hm4rm+vp3=#;D1k3 zUXEyz-x6e#TZ4$j6(jRb9Jcwgq|%eTDI^5ZVggzWMG**a%KNh@J{O&>5r?5Dlh6`| zj;#lT1Cq$WC-$#Tnq3FVc4}ECyj5q1SG${=_^hLTC|zWl89j|D>D10~h%KoyeYBFw z^tI_8HA?aX!BJK473OB}aKO&FVXY8tq2=bl@`^tRw@KiYRmlXyhwJq-`6WqTqUJFM z_=;4kSOYAD+2r*7DL&b~JwTT4!oJ?yo?|pU+}F^Fnh>5o*Y6q9%^dV`&_6hpW8atR z5I(0Y!p!E6sFB@&wdBoHH}jSC19>UTNA;cGoWq7$Enm``j(4m`i{=2slo?dhIh#Mp zIMgvP*-9j&aJKC{HhX*Rc;A!ubNt67-xI;o#dX8|h^7ENc2waH=(@LEmxjAwcK4f^ zZ^O)#Ix9Rnu(t;yEhWy|(xm8is02i)87zEr+cPE{G%g9EDusZQU)UnmOfRdByv%i_eEYUvb|s zydZ1%efJEQinjEtv*zA~4m99gD%84%tLLW6K}kzZJs}d|&f>xw03n^SeiPE{{iSq`W7dqHXi;iYL#Id!2g%=-r=<>dPJc%wBk(EwjQg!4x&7*Y>6ZhHH-q>0- z?EZLjJ6>(kuk%(Dz0{Y(gOYVIT%7|p(%}FBk>Xp{YS{T%EJLq$1t7l8lcmaD52}jm zkrkgBGiN)RHMSLt$fHT#bb7vRdlvTkG0JSW&26Z@+Mn?4G;MUWzS=0*Z+G%Re0Fn) zPK<3PQmQh>KN&ntk;mGm!1q@2{B@ZKVe4*^XVVRTypPe6gP$t=88LRQEfMdwe;{Po z0k(xdL*C{yYCyzZ5_@-$QTn!1t2kNpwRJB_aZ_YttG+bD}T^k!)zc zTdZ8$vl14f12zoL__jzcr{FULdGo+n&O1E$r`Q&!G-k8P?j7V{E!WD88SGAPikn&+ z2|+^__zq;8QUnJE7T|J)Q(7w8_Q@QDb-SnI6GJ}Ccchc0%oexl$=s`k?yFUC1%MsL z^{cm4nU5nJzlpVv$sgi3`GQRuEGVt0`yfRlG}F;?$9)=c>cefqurwn(Q#GK7VSfDv zig8(mGE!Kwd4VC!WA@fZz3REcAsF+)5Q&{J^qP22i#bo;P3={E5!cCWv9Sk)Mc-V* z^H&4Ej1M$HmBY92Pll{Ay&WPGvrtLdybrd;{dy%taCQz3Th_1<3jXPtd3nOS>#G4> z`HU_xcJ}+;cgHh^`;B0}``=#s%CdBVeaO=d%3$}_5(giu<;~6D#N!GMwr^?$4R7dG z@7j5yDRPJX$nBpcSfB1|1?l9SGBU+XL$xft7By8^`_%)7M-JQdxRsrMo&214b%RB#pHeDghtbO&oACgmd{6$u5i=T!wKJ#_tZCj;|pC*zFofMhPHGKlaz^vGLUN|takscrSZQe*3;@f#c3)1 zdu!o;b8-GJIM9^F{{Ly)Bs?eKfcTF$q1(}auS$PUl!9kL(GE~#7J0Ngf2|Z@!`jqW zN!pe!Ik%&~EtfCyiSOkjo%n|bI4CWxDw6Q{kV<89^UNILHw##^8m}?y2)vL*0qdN& zz>1ri_W0JbFP2&sP;txmbofgp+8s+^sE9`7V(B;bHN$t&->v>O1J2Soe^-nd$gYo> z*9(VDAyZhIPD#CKuooe7TW+I7CbPg&@6$UNH%a5!pX92kqb>AbmhOv$X_i_4tuk(; zSV81c|6gzxY1Bz49FjHm={FMi$zfy32dyrv7jrcT$_ucv7Hd zOcI(6x1)E{mL(I+r+tlGqFF@?_A9Mc^^Z)^@FYhqP<{FFKXIMEq6qyDX{xI_%@OTk zLT5qAMJWNzOE;S4_3j0K7%P3A5hv7Qz?J7W;9emDy^!v&lL3Bwp!a)3%4zeZWp9(K zJwVWW^976KX`V=?m?j@avAwA)ow6I-xv)s_WgeO`Qt#YitaWa(%0xYNDPyiMFRp*O zwLjOp2Cwq#NFLM0vi|ZsW*TO^|MM&;t#BIIG~l86BF<>anth*bQBgL)&j9#p%a5Wb z+wH&@<}z;orV}8G5*atW1m%5Wba2#E7^65r1i)2oUnJ=M6kxl)VwrjO2bY;a0rbOH z_vb6NFS0#-z5yRkd0nUYr5P%gSSuVx5P5xMxRSav*OO9zyX-t zDGas;J~`i(gKVFlXa6(!l-F#gsP=4WzpoX^41VDaY@R}>g#Xw={gn1^1D54@vN4%_ zo7+`ynMvSWQhv&y@1vc#!L-s&d_VHncC@UIrOj0ULNhjIK4%|*1!tw}qA8>*T-#{L zQZx(7vsFr9k%-)7{_NyKwy2y0)*M|!NZ$##y#q*K#hHy$RZlT4?6=S!m3;h{ol%{~ z`F-TvYsZ~W^LDC%8KedLYZ~Ec`#qZ!JnmY*5^&751v8URhi$_r3~mU^)WcOZ8cRdh zfVhCTaMSW1e$YHw^L378v;(qS{*6#?OxPYD4wsBF}9m!v5 z;YMSVnj)-PpM{c_87rNuT888deH7RpK#HnLnuQ8aL@aGl6Ze6z$ddZVUR;2deWISZ zR#460sp#_Rgg~;(<3tzbEMtquDM?$|*Nfsd_dW>%CD!s4y}m9i?{Z4Mid{EE4v*pbHQWN@Cx~ww8{~awINFzLGv2{<6RY;wcpti ze1^ix4{%TDKdx%9-BX5yKMJ56z!A45Ty!(xtSfam;CB3Ocff7^!&k~unA}A<5_KVo z95#p>|F%RR@TwP427O!I)m)sZJW|6X@n}_j^!Dcf?5glgC4~D<|6w=h@M@n;MM3<; z>c_^hy^)%I;QyRXfp|(IhMqa8QK5+4-IX{3qg9ML)YCZz+kN405H3RF4?k@L#H;8R z&lH^O_O(YUr=Z+UU9pn$y^=!-G+m{dWmN_E6q3<%Z7AJT6^GuN&@77L=h&2BomySH z_*3#{QU+*zrS|dmhvFilQ_KnCmS*`mE(a1Nsk_;xFXF!v!skSF#b%Z} zclGDy&X|8T-y#ibBZn)vBzEt_1^7zw*Vg1cTNjvB9^{T7h={dB`k6)`&K6?)lw0$9 zWgXPr1{%GC+t?{~+G)P{+jwPM_<9CDmEK5bU7c|FJn6mG2HZ4JeZ79SnKmo7-aMIr z#T-mpA1Ba5`~5*90}F4-4z;dpSHE5RM6F*$CA*0zMH{e9k_2rQ$nRuk1kA?IGsUgSl@@duHn>cCFv9W>$DEB2u zAfDP4}rp&@Zpbty@RZP4qkPSaZSP$#0)psVmfzBBkBc$f$xI z8t7J0q1+{S55b@0t4q-l7~Qnn!4T>(DgcF!dE4HySxt1&Dxkn}0G*GbfAt!f2kFd%BAK zNX|1NfmTZ3)dGp$Z(bcoc=C&*vZcQ*od4b=>vXB?jTGSHSAQLd)Kf{~jmx3YG$BC=o-LT=KWn-b((+g?^#zY9F8`QFL|o;c zNu~+0b~V<4)B>!b}1I>BEk!BQ?!SK<#N7tnD2O9q|(PO%LbFiWI)5vbKd1m*-uw99$u-rke zQ(Bj_h+SXi8&w)XfT=e)4{cLiAA^0k{ZUusCVOzK1)_|+F`+}UTp*vS*-a5D#Bp(B zI^fsqIlmUo-l)xPBV zI|i5tks}e4QnJQR>3w%z*SkGcW$$#A*fwxqGmyQg$?>0)kY>-x;)G}KJFK&BWTm+g zS=fMs#X@!pZ~LNP`8UJ$8H{1JK7;tvlXpC-M<4;HFZCuT zfK@;ZGw;`2Ng^`o0bief+$K^_{J^QUeZ5wQXRP|o z`#G9%)QS~Sn6a9}X$1;k?`L&v`jFWK@URy!Eai^o`Ej@kYG!+^tKE;vPvd1~k+-Ab zKz)v5P#g}y7M5TY4avJ<7}w_*j6w+ zwJ@Q3uf_RMOiFpU1LmW>U$1KEmA~)RZW#cXZpI#SjwsJ;qf#qsEaC6yuBexEr&!r~ zxwOTv?Ld{7zUcCBVhAFkF}k_{Ip=d?|0bzm5aLB-@HA>p<%|>=j+$TaWDg%5}nA5rhOU7m{;D2k^ zKi*Giam+Gz7h0{*aX|&R;Jf5S?Z2Ljnwx{nna6P7GxBZsHu77OZ|k#Y8}AJ7d=}|j zx&5M7C8aL_cI&gdtb7`)8-Es6;)|OU;)Jz5?kl7|r z#Xv3J*X^|GLT7DVB_Yg_OxtGN*4{?jcF*M+p`}qlTf0DX_$CEyKI+ST0kJBD-41Ei zn=5j&ns4wBOZMPe>P8X22gFVSh)FgMePO0!3$HCTA**+db3YkQD7ph9V!FtD7!2Ba z8~47XZ&z=JZ-+C_$u@FJxn?m?(VQ?)V|jrSkhfiuax6|)V!?5yl=~8#;oFg5Mm52A z4BbzQQfH5Q#jCi&dhVCo*omv2m{qD_>I6_2UPz&`+L|-Fc<;)So`^5UpKyMx5;$3l zUvj;J6yQQFlWF{9ZnWd*R_t}H_rGz#qGGWaL25Vf_?rl_2`TbuGkz=Ii?USMuXniH zT{wJXxYzN+bx%k@r;v*7T-0PYvI{*;IZrfEu}W4Ye3HO)y(vc)AI*A~9zvhjUokrS zfG!XFyOG_~xFh79P*b{}dzc=kNCBy5H<2@!AmFd*?zi|_+}2jVPfH&^rJ3D$L#Awk;X4jV+;6WfHh3-=-16C3=M$M-MUXtX>@7LgcS>`9;EdT`aj6%tpw>-a$@pVWm|rKL zbZy^wuHfssdO?h$*4^HO6|KTXEDdIeP_`;5o9O z>lCS7DjDr+VeJykd~iD4GfTJpcGCRSDuak?7XtqmcW)ULSJSqMcH{2aIE3ID+|ms+ zBoGqZT^pC+7ThHeEJ%V&`ex0KS!-tc&+hKMs&>^~ zyY8yG<+}3j2Tg;K#Sq zv7cx1cqY}XHL=r$&5j%Hd<)0x7or_!v&ZZ=B}j;lTO|dw=Qg|+Gl~A7kcc(S62^{) z$;o%X2h-3V@2690Sz7cYM02w5c3Q*T+gvai?noE^ok-QO1Kq%^&r75^Kf2I}1!dtj zcdA%>TTkbdXtQZZp_Tf^kF|;8=8e9ZnL7=6-yh5H5kw4PfBlz1XQJS|dd+TOhTFe7 zmu9|2CwBBv<8Fj|*L}D>EZFCdA~ErPx_5#Xk$*2>tq(vd}FA5?)&CbA+m=DGoz9Ak)2I0aZDqrWYyHgX2e?5*!BYGy=7?VbD)`!a`h4G+a&A zop6s2pFhXe@rcMRV95Psw1+8f`DK+-d_86xms{CboKKx8@E{UmJ_~u-wm#0OYfU(F z!p{+EhKgW}gh98=QXx&M`)QN&v3vGDAu|hQtA~p3JnT9m>2znLJ&dGJHo@zkuuehz z>H2YxW?5BpwntRS$9$396Sd_$WePJymue>}-l+*LyR!2n=47>KwM-_Dxf$V;8PeQ- z4(cIC?RYIz_Sd2IeVdVu)2r&)9*xQ@8pp79$tzH6sD{8b+2zkoO2NUIlUII9V(Fmg z5^KLK_7D8LOG(XSO|O(=!^K?(;>I#lrShP^>KD&K`5J%Pu!J1CrxfpPS}vx0AJhgd z$NPDcHxO6F^%}3OtKOP1r8r?r_L5}!;RPMQswNzYPFOS<28tqz_N00D zQ?@q<+-`h%+uQ{a%a-)&`(8~K zZJU?*x{mowqVX+@T9pT|q-IE$Lb>oY5=?ErtcQGCQcUWbnjy0F zbc{o@(!BW13A3zh9qdxz_Vz?Gg4(gjOXO|8^$#iMdkpsANZ4{dlF;#&drjQZYi(!# zCsaHlr3Hjf7GZ|t^Qeo+YsUCcH{s-PbKFgBoYl{QIKlgPO4se~C)v2f-tAzHt9%5p z*XBxu9dCYHOjn4T%%d8qrm*LVEb3PI^+6cJZ(u*yVO;W)Syj^x;p#o<3C9MWh*?(6 zFIOR^rstZlj>Wpp-kI1W`L4k)%$H_CIZbvj4&#;gIlPdP-k#|N=FLxwA2;7Ocl4-I zy@WiK8g&n8FX`L0sU<=6;!SFH+1@&jW(}TjrSKh+re?AZv6G!81 z3XM)ELIfHmy|!Dz@07O2EK2iKLd1xB%2d#;kfq-HvIyu5Y!kK#iMFiz%Of&%GgMU~ z31;1f(g;0S1mdfjTpJU(se)#9?ThXaiH7F{HYf2-sZHzOWZVyOVPM;4?!`n0FFNj= z(&~x>Q@1OhSOzg~p;8cq#Z}+hbbqjr*y0lT_hj(|kx>);(__UaNM6~y6NX*l;P=*h zibG9@XcgoN+49WchGb#sd;0}c_J_F+ZyYV#(at!1B7~jJor>D7qU4)|hqAQQn)}ol z1bkc0m*-ROTb#DD-Vd^n5(yzDs{OA${;4;~zYJ50Gs)ZCP(Si!?1pgn@|&}d!3?)` zZ+rD~G8w$dCG95=MgP_-X18B+N1;w;{$~5SvY7cfWIZ%w^Y7xV)93OIxzbakf0KkG z;BgSX8-(}f|8d>`0fY>E5ETLwXZpYd-kb|?HG(AEc^1T{_-^Vul6E;`3C?&-~j!npQr!&t~{awqtOMnq+tvG?;i@){tx?tzwL;4>FNJd z$p8R!A-@r<;a^B65KQ7P96u3Kp@KU5NIKZAe2ls-=y^Rnt?Wkv5`I8g`CL0U+! z4{)`(x0e1K7Kt54Aq7Jua3&iI#H?mNUuF6krS84dM}+VEMF1xdKa!u$2rh@sKShS_ zALr}9(%g%=gk|kR-r=crp!q-3+8*m>hKDfn@i%=dE3VSi;=o!UXym46Ey38z`C_X} zPYPz1o>k;2oTJhOP>Cc!^e}bAlj;J+s9Fw*yAGFh^bAsNTJr&~n5|igv9pKlRXR!| zzvUqJIVmA~n&J^<$$%B$Ry!gO>;T;F2M%-98Cyyz$exEfg6yf_sRG48#k=Cn+A>|8 zgsiA~YtXAic4ZSn!muX{tZ&3KB&5u56Kb%3V*Q9@ z7Xb_(N~9mNpQpj@Vq?n{T4cGk`Ok6m11HqdWG&PW6Y~tD=Kv+wS?$8FkyZ$H2aW)1 z?;NlBlABQ0v>u=2Mv*sgrKlNJJ0jgo8-8ty4+L*jjpy|MJ2l5gZZ&ZlPBV%u2-|^vp zOu?XcR30BSKy_nHRX;HL}|Ue zRmo_4iVD~;EabnF#a`u5(x8e|UetO8vK#a24>AV@D+9zB#^eoEy214&F7GFdS&?36 z>koQ}pN+XjE0V@E6r#EWaNEp$uzX=wQ9m@W9iWB7m4`a1K&`i6}8 znAgbWKORuLqfK93TlZfs=gJk}y_7C3aYa>w2gYjoI^|#bH8FR({QqqukRn~NKNObl zun%jwZ2OO@6lc&qz3^Mup#~f89N^CdpGFbkq%HyqxH{6DAnK7k)+1CzriL?3W3bb= zRy9hijdw7rUKCfyc}4qEqJs^z!HUd|8C1lq@ec~b=qGWRx1Cg}&R-2zL=QoN&`jiJ z>rV0bHcT(3e$f`l0pM@_yME_FhIM8+v~a1Y{kU*^UNDncGw+TsrI|=kn{jFD05(ev zuntfDXqA0)Ej93Y2wvZqIvF)Bnbw}-m9{C7X3@RDR5ArFg|w3DqqD-7m(QLFm1AG; zT3MM*6u^=DyJC-1Q5qXw*7J);%CwSPO#av)-M_&M^%(>@S>KE=yfhmWxF;`bS^sZ) z30iV@-;vtC9NmY<8q ze_!>tjB4YxnHZA8C_JBf6(!6NrIy7gs)hDbS%ok^IhrPc@zh7UiEq55v|=H?u;hen z$g#7Q*U>9oZ;NI9@?j(N_rsWQ8H!|#phqmfs~UbINmX@`*jxDCrQ`>EUakUH)gv4y zJQL|5>%jwp$!J`71#%ntZ{brg2}O-Aqlx&lr1qLR2Ud0+)`_c{(cn01S$V1A19b;W zN#H(eT}70hEzVXBHOK(|mj@0SRr~IH>r6g7^eX55MGEVJk3kTH*3;|hd+F-8x z&^UP^U{B$iplu&&n==>(|4=S~&i#NN+Zf$Zj)vrKT(v~;(YL*@2njxVvv-Mpn*jt> zLM#UuIFc??O*;MUciQ_H08SS{UtSp^A~Dhc1FAW_B|kARVW94vbK#|e4fhlds0N-= z4@E*Ej4)7phvkl%@%8KeD!gHCGrRi%c^ZK?5ui+sK4sh;jD|zOYlW1AviNgTBad!u z;|Pr|I2__%5x{Zfe86+$4#4#<`~^lpY7U`kI7uhxy1nqgHolVmz-`YX5fip?YDax0 z2Nwf>bGWAdd{6Z1T^7}`AmF{Lp!FmI)_1r{O@$OYf6~T+^s0m5tGwxfF7q=z;3nH> z5&)v3@Dj-~&o95dV#INs{NB>*dY1Dk9CDr)H zI=rK(5AZxB6+AKI^Z?YPi+_n>bYxRCR>ij@Igv@?QrQ+<~dBm;n z_B1v%Z(_>0?Z#UoxA); z`V)+^x?F@a1Bp?Ta9)KqI1g=;1R<#6g1^e(?_bk6mXMqBC*(d@AwbCL?DZDea!nuH zK%bhue|t+uxyQPdbG#+QNF=U7N{PjL5wnOFP-fH_J@ki{Q5D<8d3F>o&KCej<&6M^ z1q?LPcrFF>qNA0t>8OC~HTtW1a-_OrT5j42z31P>zF)7Ju#JA9a2}+%%^PX|t*tmk zS{6|bsdi7*ek}`Wa@xn#z((r{U#gw82g9by@E}&5&Hx|uIwye5C|+?*tOK&X&iULi zRJa3axi@GVs@iWG5^@eo9u%An zEuS@rL(5toZg=>4)S2-5TdEB~up1|q8;8t1fwz(R%AF}6vs^|V9S!=f-M@EEMf=UJ zPxyqYg{MsU({15s={A({^z2UVp1x#f6($$Q$eFpdzI?`ip}&4vU3{nG-yztKbr_X+ z!d9BGCN{ANBuyYvmsHPDEkJ20b&DPiKC5y_5$K=C%RrY&sj2W@LuK7Zxj%aYmF9YF z=KSx5%$~;0K|qpfF*EV@AEbVET_4a&dQ0_HtnSvd73|RY)n_(8f?K9Ny46QX-xy{yk`Q zIeR4QT=;l2?(Z1&V^*_ z6b?%pOC^2Zt)v#K}r&OxBB5` zwaXI^HzEI%(eGwA)DI$WUD@h3JL^&z3r8xgWd6o^?J5?PuhHN1`6MRAtXG(6yo)$>KtUeypwnzsf1&gIfTFH+@rOf`c0+={f3qm1I9s(g|GQNZ;V?HiAyG5)LQwu?csPDZNa8C1o9~*um6%t5bEK&nfq-h8w zPkw8PnRrdG`T&RX&=Zo&q~|GJ6k5-cS{m3`ug)3K7o2rTH(Ur;$?=b-IN2MLQljH5 z`o7o@D+tLJugdTc$^*I@>n#h^KkoTo9POSy-%;!<7c>s(!vhGGF^|tJ<{GGv+DE~` z{bGsb<*+$Uy0s5H*ej`?hnAG@x2BmjSxcQ_hlLHI3zxQ#s}4Pt_lvpXw7`3e0xIL= zeIyHNVO_WM=@M9s@I?_wj^r|M9<^q{Gv@hi=vf9$>hFaq^ zCg*3u0al!}jyV#n(53!^G?TRYtpWy+i;3XjJ+}dJD$wgaXfWdmh4+-g!rt1;CnD<1 zNADH~LH))1QDQ0FVKLtg8<{Ko+a>DoJbX{TwmD7XHj<;)pt#QFjM~i0({~%K)d#=U zGLH~z@2IDVp!3@yMEYURC*iE5a8eh~067T(>r)Qf=|=lLyk}xi8dY{V!q*a*LY>(g zvDPCBCfBW~dGuxlP^&jt%dODseViAU3#r4<{b^#k{}Dg`M1Egnq8>+1i4M=GPp?zn zm8^|~W+yO&1f9fn&Ig2s^N%GKa8P^;eK;LFVsAcC|dNq-)|2`V7K)-bRon5#O&5UG+12b&fQZia%hdT5hgf zWBbPhpND>_?1A*mpwpTSR5_LA#5GB3k^wdx4y3Q=eGs$KiJx*{z# zkKmigbM9FhGnRrHkp>DM!^1F6aLkuENrz~Dg*#@=JBUZVJBUc{jN6DTjbyQpB zF78%V{uF|Z9C8f8a3wQhF1synl585Yv9<^8`u^_riM-84R%ZDCGQM1f_q}?ynK{|X zf+4rERH^h1kf7;=ebRv&!_rXfE>~hN8Q|`$kixrb<>zQI#uN@K=a`F+VZCIBfs3(C zV^t|E=7{J?05+K1qpu@x+kY~}HE#UHvi%G0;DG_O3MK42Zo9%e-9|DmbGUdsM zPZO7M2Q}howG`lG`$`kqsbiIH3(Pi9+z=oJ2nM0&Xo!DBso3_?evnm2g2mKmESLn| zvSgF-ki0CpP5!Q9j+(kVkQNL*VOh!FN&8e~_||qteTr4}E^J3{(_8BI1Inuwr}u3g z_EMMgZ)|^B-O))l8SgDFY!s$$#eJof6Aa#Hk^$s_$;!BhY(u0J4U`km`ex1QV)+L= z(8Ad@Ax?*%&M|KnW{K~P0)OPEa3=0`o!Fz&qOCyghi(r`7L2t8uj~YAQIt`YC)>rI zM-IpP1d!Oh%t{Fv(@Pz}C+vpxSwGSm=GOr-O_DEx^yaImn5)*b(i(U8l~ZTD0uch( zKU*UAeji{r@%O4qjk*|gtc?!wR23oy-Ms<@Zyp+eFLspqZ>tZ&rIq52_ z5e5unaCtexV_KNM;;Rue7?Gemo&sxd%TAl1TDMT#r82kp)5=T*dsYQvW^X zbJ{e>z_UtE;RRk2rgw2Nn1(+ku7_(YxXGX*Sh^E(p5+-%*e4t6Xt(993(|=Vz4aNV zSFVbR5^p{6^Ue$-HwGsYd%g+DpXXEIuI_BUY|&x-0}$rWzUSFi=DA%LqYK=bkEA{# zmyAy>SdHG)nDYC2dlMN37KYxb0WBjWzNp;DWZKN7j5(<_@i~HNKU77Aw)l{>$|SkK zPytSa$b_A@6gY=w0Pcy%jda?`tC|H;MqByEO2_w=imwaumS~@`4cz5gFYD~o;L0Dw zkmd~VFOO{R4L@HX*7U^FN!LIF5ZGD;XFyJS|K6&{oPa&1^-z52 zgv52cd2 zFP(JJrsto}<~)uk2S^ocy@ta#ah|mI=(ib~qC@ECNKp^vS+*ilsH9VDa9cyV+WSZ~ zed8xc2izWfZFO-|$L?(}*Rfd8x$fr!dLhqzqN5GpZFO}UtFmY3+gDe+&Sxh6<#@!7 zQ?d9ad!=aq{@F&CLk_v2Xz3-mkj;3k6CT(x8KVtEG>i%{G?a#`Nszmel(D8Rxgl;fA9<*2}WpuLw=%4ARO11U#ER?j4sRG2| zM8V1T-Dg6NH!bkejOqhDn9X{-fUIKu7d{R_zl7&(gM3tYndiiv#{n^eGQ9Xv*KZHu zK+coTLyQ+lB_YJ()*`M|7fLP&$K2x}w~=SjxSF5V>gWizD<#EG-5Tdfz5VMU~wW(fNDp|2KTE zYS=&(T$B@fv%#i5eLoJ<>i9MH!kZ6^QD2b-jqkmDyvlO9>pp0B1*8M|df7`z(y6_3 zQ|+|f5-TU$jH_WsmC7Xg*VwUHWK^702Y34Lw~Xkd$26N^I7GA1SVO zj)FL;egyG+E~NPDku1szV%^Cz+nGY*(_XgdGw9FLT;-5&K%} ztw18*hWGBYv28_!-if**z`~?*N}{@SdAQ=#PN5mAlnZ{sZgLO34RIe!Z*;`fR(I~x8#nWr z$pgIX*FE0kLTc?yR>8VtnW#V#@luJTmo=m$Jd(}B{k1-iBPo55HP_CXkDh$)V@es z!uD_0PH;jW3T$#XZlH&-HkquFv-rF|?qDoTpr6h7KS>7R{S|w!*A2rQDF5g zf)e6c<08xQh0769Bc*Yi6KVI=X+->e_rAzhcP!wumevSf2sQmA5Z(&?srB0aQ`9}y z+M#OC9CV=Jghu$iR)c5XMsTvsaM=`hQNmvmr<#Wx^>ah7SznG)akVun_jQv+GSvOn zOX3<KTCXlN5x0Kw<_ zLw)WBn3nKOkK$82rkQj(uWQ~WTlkJ4(^{rc)mvwCt%R3~E#(*+2@qf`p2^9{lwrQhRMG>R?upwO z_9o>s{V?cTj-p8-(U7wZtNY1tn{?lEAQWJcrmYvW2t*e*Ozt_h4E_8?mVT+>+)ej6 zK&eIa>3d+^3AVMHSE;r%Rx~Xr+=Ry`Vw5vKXmCI=4mhQ(bCxa>KtVGqMzXtkb1FNO z$u}(W%HbA+J4J1s_MQFl1%^K^d!mNVW_X*|Ti7?73Js5x`g(eFp`$}@8+RH>AFtxK z2yy^}+M?W~db6gJSVnV5{QZM<^90{iBBgm7@@11%AQ-kB~)VU3fumI zB%sX75wNX+Y#B0IVDNzrr_9xj&g)hx)WeW$o%cI#;C+A18 z2Ky(a*nSLrk9N-$Gnith*EpbJ1>81{x`^Y(yQ;aP3W!I4-}IaZbl(E!pYH-LBgqym zKsmiRShT|+EDW}DZ?npnwM5#X-4AhJlc!H=4p8Bf@@dp5a~S7|kBXXTxa|?F(uvCB zU<%3=?qjlN)?L>1fCU(#^~6pRBG`XLE)ZS-qUz506CIPDM}R92J+x0DVJirg1${ib zM&hci994TSE*1D{e_dmkN5Zv1{Qc*CY>Taxit0oKdW*d)jr!`fq>$0jtFO|!w2tRe z(__wo>xe+3!k2m!;pW;ZzWi5h)W~2QbouDNx$1$^(+9q;4K6}@?|eBFW5^yi!q%r_ zC3v1O*Xf8`Pu3$7LqaN2EmFZ;nn4m>yA8$izNyQ)RlN2m5NVRcFc(1A_>zZq)v^$;Ay8%(DdRLo<-($~w|QOg!& z%&3!_!ifZ75lmoSy7%Ec?=o3QxW@3~QhK$;59DHX91qR4CFX~FiOO_*(rSEr>&WpM zEJfiz`SzN%iZU0LDH>D50F^MLtP}Ly8)aKCO}kLO4W@I~{cDk)5c;MCtgJ)))=@ap z(fxG^dsnut_;;Bek6`m<-nL3NmkNWuo*-$dYhDhOaZ{aEB~$_SL8(x0o1AO{I_#r{ z2raU8pSQSiJH)n{k#@#cJUwqLuIb_z!?Hb@iskDh@X->j{SEX<$OBUUVuWk!@b`Ya zA5}@%3ro_{B+)IJ@CgVEngA(>`E9(-yGmP;Wp)GW*Rd(O z=XAf1T-OHwRZE5D!h)U;#p%+AJ~GuM>;vY4OIFKrzPEfI1ROD4zwiy;sfI_)NpA>} zE1BOH1NubAFU#Ae}M{mXk>@^m~mOS{*Fo zh5=t*86imiF!t5wt0m66^c&MDcN?6)OH?t&GDA%^@~CxXLO1lff$JQQy)w4}V-AQT zj6do$Tk?Up(B*mG__QwB!Rcg%RCL)klxY~>;w>TR`}egNY?;_-4Xw&6(|T40zxEeU zEYRX;^P?tZt7koK>Q(IHOi_`$Bb;B3_4-YIn<9=q-QqFtx5-&NOeITO-kv!SazjpNx!pqlkC(3lFGxiMmr=FuMnKU=upT< zw~9bxvfurZ6rwUbTY@0u@@~QUZRMIKUUfwe>exkl4!8!#e&CX)~Uls6o*qL?TpLqe-2IRf|&^)-LDM@CVyfDzO|FOBT7T=o+C1t zGZiW;xGqx4Zqnpx%=hngS4T=(@&n}pmp9e~Cq-xiH<*XuqC<#W!ddAyQ)ds{6HK@v>jD-X&Q^POcxb zr;KN%+-J;aWvDGfGgbW)ohNblqNbqduZ_dV?@rN=5I%9i)NZ0>J5rY;fa1V2w*qz} ze_c|H#f?p zHUp0kaNRzTNDG0aTz#e-YW62seV6MGpb@>4>SO{6b!A8!N}W75cvPgxs=Ph?-tWOD zqIcGG=I~dcBMRHUVw2F%<3|Ic$OFB~P?1Wf>SRR-NWW-SS8onSz>9aZL88!N4*Q7Q|59p@*~a10YNf~qS| zDJsv1-Aq`P-k_isR|Fjb_RZ-lYe5_ z3;N$-tb69kKcteM>vySr;)qqLCM5)gw_uu!d47zV^f#ETBp63~M(__fS;P?FoyGg= zT||(TA9QTI8_r<6Kp2<_TtX#TdG>3GN`)Vo)CAX!@rbqoY7Wm}#hQClYQ^HDPq1VR zj*uMd!r{V6ny?4vWVhA0Iz5Y@joBwU%eaXH)s|Uk8PPU#?u?vEXTNVB90;guvRE6Z z9+0qGXj{sW&UpU;sIEDN<)bCmZchKXQ;3ZzD*i}PYF(JRiTBI+}bY3XnqAVj04 zjmI0GP)eo6n~&=X)FcVr8!+SKst#`7q2R!uM!)KZX>R0n8-+NWj-ux?me)=<6c%2DoA(IUa7VS~9%z-*5M=^GoZC zAs|G6N!2}zfxuemTi)z?!-pG4GxWale9lEsZ*JCwg{`3S>1}^*&ks;kd3pObvaz!p za4P>0N`oJqarX5Z46@W4(Ge?k+3 zt(bqUu~Oj})^cPYAZXDwJf*CTda8!;@#OhCk5&ddu=OhiG8GLUQGGI&#M&z~7Vi!9 zHzXxZx#f4oDO1+jOFY(Q-`kb1^ua-B?mX+rMR8QjdbJdvgkR^F3QrYDcSQGU05v#r zN9*_LSQ``O>%t`s-gcg=>-^ zuRLigM{VXB{?JDa&t$(-D6FHs_MbeQN{8Uu(>YIbaaM#(4myrPYQ~rtxqI{$5K65C zGQv6QHc=gO;qhMLlIy<$4YnuI<@E<@#MXPgP9`t+pre{)1(z;*(AZ^M%4q`35woTks z`9wnyjdc9oR@Q@wEN(GuZ(v&v1p|#XDwMk+bq|*YMIA@eSQ2ZslVVsP05b2>*MsEMJ;)ib#jeQQ$DDv!>WcK^uU)oWQ%Y&OS1F;f4ZH@fAhj`(N4+ zYpr}@g;Nc7C9|-t8SjiQyxPLtajB;XXMAhu@>o8uKs9RiLr#$HVw5ti$AKJ_o7~#h z?&!Oew;nqP`7Q~U`I@u?9DEmN7f#lzU-uakiRL?fijvs;)h6kw11JG)u?;oipM;Oe02|lJ-hM7FKidCqzA`$S*h_6 zVOiO+gd9c+weGhKFO1dMCvHQy>l@7gJIcQVSd?@8u}-)}%j{(unN;2+WOXjXtc2Q2 zN$~MKeIS;zhf$6)M?iXRSLMc&$V|bl@o=TH8MdO&Kz=wHz6@D(T}dBk<0;y^{4^+? zj2~)k=jLrgv}yBDPAq5)>UEA%@MuDyKDfE`aiqL<<58Lplv@!8D-Vjg&H?vgB)?%y z;vt=%PRdNkN(*F+mRmmVGu2gc%o6B0rjcoHT4t->)H)@h8m@6^z_e5ZME-#7?5BT} z9@EP30kGF9q3;TAqxAAJM+3H6_r*V)v|0d7eEX6R&gX)v_BmM+c#J$cdF4|^@}1*3 zYOb14^&(*P07&tfOm+NMk?i1;YAD$ZVVe|QEO+2FYP}Js-^Na^KHj_mRJ*!@d^0pa zGr34!QhM=-?xLRNLu>v3%TOgaI@U)=P_C<6J!czjnCBwJN-n(ubd9kSz{HkY zC>1()Y#2N_0j~hMYS$ZN{$v)1Jwqd5~@Yop54?)Pm|< zBH!I%MimFv4SQ%8%6-gu-rLdiOj|Z|U66F(R^8Wua)LY=_3=x_l}q=u(79Hg6E8Nm)5 zKdej?48U6>r7k$LMdWF~#juwPwnnLpg_V5d^f>3^g1(b@G4VG{pKTT_^>6|tKA>PG z2?Rw^@fezrlgzYLkV-x)T)ojuS{o=9MaN$$Z7u4b(k<8n-UV>7L^NYCXB$cUO<;B8FZRQEW868;55bu44Mw+_ zY&V3Qn;Z&qJ<@376ICS0n)$GskuqHtq9P-5d3D!3& zxPRD)sPh56n^cGS5=XGPMppsL@WJIek72^1ueX7!6A1c%T0lM0QecM4rl!{7TrM)# zl7s|o0H0ggz*uLMTz^(-uR_BWnXSs=`%8E6-?wS95$^{0FvkR<1ZKkg#p4wNmqCS< z79@d4Y!uDnm5bTkld?foYxRfgI;ACdDXlT7-HPQcU#2L^l2fAF3q90@tANS+z!c2| z=}{Nrvv;`c_rj&9oaNLyCgw#!V8Yy^M#>9=Xx&OJUHvu_^i5>8Y@}8tAsQ}kEQ66s z>$IH{)>*?b?gh+Gz@8h>^#_r3=pq{=s0=i(TNRo*CcuuH>EIDIq@%(~4rR;Mg<^9y zLzr|a^ELWsng#th*T0NO>5!&meEO;SaXGqlT2k$Ul>@zR!;FlIX-rmR2zfEHXjCdJUaBb}qG+Q&IPQpzCZ9tCKt_C3hlZ@|jBaBsG)4)vx% zoy@U8(|r~vDV0#dVeu~_5NuVw#<@m-A_0_ZBZf!Lr~4;wO*Ac5gY3OzhH8&jnrc=bM;5F+p)MM1}pFH z&Vle_j1>7P#ai(ZzgPt6kD-c`I#kA}VoN4dRpbkD!H%mbxo-kP-}*~T$bzOc+#EDf ztE1n5dH?NQ>&?_#t_OUaGmsN+P$X!-=B15Bia;piuYDBg7%fP!6nsHIy4riqWpehSPBbyASGbY!xaF<30zcOQpLZ!zc2{gdweb{~j1bdy!q zFerQ#$vtLXZ2znajy4ttX}=M?nXi&zw$9PYV0-%d`zO}$c!{7U^~r9&vry=hE|o zzua?XjdAEt3>bfz6`6p5LTPO~`nadeO)s1PT{U&8T0TJyg`D*6Oh|Cy6g_!jqhS>! zoWwGDW_UBTj0+DHv|zrXtBn|kB!o>Vvf$Sb%O=lmjkrUrHZThk3TmkOX!^RlnYcrT zM*Q7_Med@f3)OHxNcUjPxaqf*8^%jGGXac{}7h1G|M`A~*dFVrT_T2ae@It(ATk6;}-fq1%3Rf%UnPQF|(G zr}p8n-n~jaqkmfr*hM=EaHzeMV9wqLYT%#)*Za&$lp&h2N5_$hy&5S-<7)K^%odSM z+UzjuI^~{4b8)E1iD}8rzWoz#5TrW6l_W3SGsN!0rh&xk$Qo!ML>;?~PHRdhpP81q zg&9|wZZtys<9p9k{;p2coD|f+Y6iB-XuvmrNjXu!CK(P}- z@7H11SKej9ms_x?EzVS)Mi>AF!SxD89g;%omCY~hF-#52ur06N9m>^0@y%}#3&~nP zw6$ahvv8eI16DFan^dRA(`Sj|g4ua%M?`^5%vE9m6bEti>p4;kRb5*{HH+zFla>N9 zv361?Yi}_G0vt6}=M1CMZ5Z2ja_X|tf@=rXv<9n3NNG?>-nwQ?R$R>Q04X`9va;Uy zq%XcYVH#W<4Ys7tEh0y*{??aCKxsxAM-@~J+lsb$JJ4N6l1yW4vI=km=B!4z=qc9i zt31;T12el9*@vMwZp|BYCkHUl1SuWJjRmk1brtNg_?9Rwh}24)&^}Cxgv7{%SwkiO z_LQVtfJN`s{W@8%N*T)fXn04ncmYQ8cglAZ-Y-mMs`a)XHhtwMk^@HbQ*>yf7DjD= zbt`TK+a_#PHAH=_;%#i(5ldibSxABzy3ab1Q;memVCK|h$d{at24`+SBsMDs2;w^B zTtou}7kT1?HR++CM6nGvK+i7Y|&!?J-qx(%_s(w^&VO*MfIyt0|tj? zU#I{}Y7kT^jXH$Qfzr5p+N)fJ=Xp&uZmUDWlC18vwL%z@iiPAG3#)MK)!ap6O?i9O z$FkN^Aeay;tqf|mYO2dhP$)THB4w%?;6p(HP)s^rm%f$Kx(vfnSj2H2$o^V(?F(9WQZsiEYoG5gmOlYF(Fgkp=Ara zBI4DhD8TIGN4l;ICRHZJ`2zKfQJ5}K?g!hyq+_Mt1|ZhxQ8;#KfQSv7oFtuSYjBFN zvz@RhyFk_hHYR+l(uQ#SN}!+Lqa_p$ykczN7kAN@(_!yp-;A z12bO}NpEF=s#d|!AWdvl%^eZk)>P7Ohw2Gp3iO-~vad&OI*K+m-$-;U26GUtZT&L6 zUdFcxe{(UXm>6$+E7~<%%^*HwHU<_TO?Zg^074X`O;hTjZceR~v=D2t z@zVq5GDac`dC^%*mUD;6>I{nUd4VINdWr>4 zyXp-?2+-XO%37|w{;gfn*Jc4gc`(ElmFExUHDGub^XZ`7Y+lhq!O2qqzzW%4PiWkf zmy`#*DHLuPAcY!g^v9}f!(sV?2(lXs67IvgjIAgO&9(P}@TXe+&!Vlx+Gv*UwymhX zdSK4=Y7ko*D-ZMfQe|rJJ>XMDfY&wp!#taGJ?V*PE%(DV4n<#80;mS;)&=V1`O+BL z2BP!v{vlqIIEvAr)!Q{FzDxBOvYu5@LxAqRM66Nm5h9W2{EE9#Pa;^$svSa8?E*p$ zXw&K?l;n@7Ho7in&36XZ%%poFs@{Tv!uMrPF09Tx7~=_a&`6LloxaIbpm6UTEE>^x z^YmK+)nGhEG>vlKKv*6Hj}`+$p!@!mDc6AUvNmGsq58)#CxL7CiVK6NTsDO6(0Zd6 zUA0UXVHte0Shp9c?E(Q+%l;n9_d=~LcqNvu`AD|uT?^3tpqEtV2$ZJ1Kufo4jW|)? z>bq)~s{U9ib6TI`lvct_ZT{r3+rspypa zv~XSSW89P+2S%UQuJc>|jRP5g=k}Dl4es8KuW0al#)Dzn?z$rfv7~fe;_g~GTS3L# zIlrh{PWbxD3vf+6Q_Yh^6y_e~N0hg!Ey=1c{K~PW%rdUA?ROe5dzBOS#m-pZRQq-} z=rbwiGOfFx+{&L2uSLl&Mpi1iE$iY?M44TF^5cJSY`)zEBUhb&FaQRgZ>`h(>kMs{ zl&b0p+7ve^%uW*zyhN(2yVT%X3YBn+0m$FhGA`(Rwdrs*8nXnw&beE>(Us>@!zr?z zl>X3c^)+>@=>?j^#&N-Ihy@axHR{H7}fTJY6Hwd(R=>@p)1m9&$Z1+`3M%T?Ee6BRbM%b z%nkuT>Yym5^vZ`h48}v9MI8w%K0mq%WNg^KAazu`SXP9<1=(jEG(gbSAf$q3m_Wg6 z6?VVZqiL?{e(^R|>>n5PijbhH&4&`QfqM=0OC`+*R*Y(;2~DNDNL&~uBLKV}J$y{JDOPZexHMF`%OkccX6U_vLjQK&@_a+T>7B?8BowKul0 zppD+g$J8`v+!tNu$rag)_KS@L6a(L>Sg^EFSo%AakGEFFgS}Jp4OzCw_Z60j+4M6( z@0A-(8x2IU3N=;^(91yN^eBdg_k7Hv9NnwyqL>|;cwuJN zMJ#eN>Ka=&a)%=JZ>2!hdg6yF<|hNS+IYwQM|LKu{{UjT0qqPT z8YHHntv~V@MWxcq-q%DG@iAp9eZ3hdZ*-SX+*`U)V~z?g-~lv#o7Z6r`w=QyzR(6E z&kwo`u7)hrq7=V+$J$?GwNl=uxzZCo>j=Ogx;byE(Bk8bK3kK(#H2SOt^|$~6FahOZiT=qv*8wQwB^W{=Pb%Tl$Iogta)&H4tF;c;#_AYVR}qUQ7_ z)Z7#oo-r1SnbERTy2S#zOt9a?$^QUVR)m;It)C)zpbI+OMy~N4ar8x@PZLBx3TWQ; zX07Bv^?odeKZpE7aJ(^Eo?>uMBLx0dTUpp9Fhyo^4@E^r%&)vd1Kum1isd`k`y$%^ z06lLG5lnl`MVrfYcgE4`GmWpjBWB{)@zRuwn+)u!Li%_xny~<&)d~+iZMdqX{{SvD zIL~-3*GCl+5fO6h>G9wMYXBMszU+3+B7sZ-P>$qZ*+=|J{vXs-#2NwU(y(oKgTZ0h z2lpZ?OLhnC)PO+c(kLk~r~=yMzo|)D{{R!H6-zj)l@(ZbpTQsl4V?_NL}jA9o`$2L z-d3_X^fm;X>Lanc@>E*jcA4yWcZhJoECFwK1VFFJ6};bn_cecLMy37+BQKANE7OW8 z(~^aNiFF7CMlWwX#+QAwE8GW6VV7^fXUQpXysx3Da2Dd*y%gaiZ{qPvUOq^;UxCu~z`fARi(pQnWVDODt&->aaG2ptO|nJG9c& z2U=R0(tK0=OE9^$z7MIKxUT|~{?GtyR(b%<`^=iFmIT&Zn!*=nwRB+Q?8K5#@6gvU z?RN8zMRdc6DwS>Jo#En@m182c+~}I=H8_m+2W2CNpZBF=D9zeJg?UC|JPxYOK|zj7 zif>%X^=jT!*Lh^sFx`VFD{^ACVdxdcHNAD(P|Aw#98;JGh?bq@wzmh@Bc(k7Q<`kS zES?>;OluI$;qV|!)_@l0AzM2`)AX%Hh{O)X=mu4GA=!jR38^?YWoV;)@$f45Mcm3` zQlUWBG8#gy6lTQ$(vk>^2q@AwhO5j~lywqX7^({v)F_j@LfI)nYgyKBe1Gz{;Yt9w z6lG;r_X==VK|rIsFpLz%h`To$yYB|12aWgm){_XEvC3pAkrZ`JO>K!yofl*z0T)3= zs}TMjQxI~@gbLeE0LNGIbu3J-0f!KKXXrlXxG?gV!%VN!>KTe<&oYt}s>ChaDSUQC z^Lg6t(6AlO@_{(C>jZl+CB!%ej#F?ey{vbrFEhl%2Z}D&E39z?6s1y@)zlcZjKvZ% z><~7V00cs7n5qVNY3mny2UW0D7Oqu&;SR^3eF3rO(ANOQ9&ha&sV%lhS)jfK;*LGp zbQ^Sb)P!oTxtK9N&?~=!QrxR+=&7``iIiHvm~*+uM@ZHObb2#(o(w^q0a9L08HiW6 z``W)cE9PFS6?LmTne&aTFN*uQNgUaY0vdoi2XATF-$BkT-&#*awbUC{G& z*{Qv@^|a(Q397SROJ(QcCBvQcYQ6jp0Y*lNQ} zgGCV0+){uvHMtu^K`%uRb#9AV)4oFPj|JegO0gidoWS{~F!5$JbZYB0a>Fd5wFM)= zSgXCNV6&FJuGTEPXo`0&0OSKI)0q?vX-2SuWrfsG+UNsd?!zabCo5E{hX{dVMO5dU zPKZL7vGSPmgj>W)zB631=)ja3G9-HqAqv=Vqaz@+-4SF5!37v5F_A<;qjF*sLdY5c zXaE3SGO!$(!!fl73OM zzlc&c(6yC+O5Aq}{$>bYHy>yK00x2UP%X!qozJ^)g$sGcB2luN=$c8}u?Or+ss-$5 zLl7V!*2;UpegO3_iwANK)%TmuuNP6vj+`=`KH7BUzy$*C!qRBnfGsUXS#E=~)qM>S z%U}EnUHbv>xVpWVpn7R}u`iaDd=V=DF$`|*uJ))iOP!D6#liEAh+T0CPC zg@WoE{Yr#X+~QL}S9Hf7(Dbmq&Wb?1hVuYh?Um&gfOQipn%Rgxh4<=c*57!;jT_dH zw6reJ(dJvLS7L*%Oc&(^S^=vF0BI{yiRag(n0V3+gZ}`?73H~AWnMiPOFGqFBdj%v z8EaPUGI@qq(BxLSk5lTw!w@S5wFz<)+6qSuLM@JJXmr0|UwNz#yg03Myf_&f*Vc>T M$B3Y{f5m_Q*>P+5jsO4v literal 0 HcmV?d00001 diff --git a/.wordpress-org/banner-772x250.jpg b/.wordpress-org/banner-772x250.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8e734cbb452c8998be7d7815a90449bfbba2649b GIT binary patch literal 36201 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 literal 0 HcmV?d00001 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2fb7b4e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +## Unreleased + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100755 index 0000000..e72bfdd --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..326715d --- /dev/null +++ b/Makefile @@ -0,0 +1,297 @@ +#https://stackoverflow.com/a/44061904/3929620 +.PHONY: all install test deploy setup check set-env wait up install-wordpress test-wordpress deploy-develop deploy-production clean-wordpress down help + +include .env + +PLUGIN_NAME ?= +PLUGIN_VERSION ?= + +MARIADB_TAG ?= latest +MARIADB_ALLOW_EMPTY_PASSWORD ?= yes +MARIADB_USER ?= user +MARIADB_PASSWORD ?= +MARIADB_DATABASE ?= wordpress + +WORDPRESS_TAG ?= latest +WORDPRESS_ALLOW_EMPTY_PASSWORD ?= yes +WORDPRESS_DATABASE_HOST ?= mariadb +WORDPRESS_DATABASE_PORT_NUMBER ?= 3306 +WORDPRESS_DATABASE_NAME ?= wordpress +WORDPRESS_DATABASE_USER ?= user +WORDPRESS_DATABASE_PASSWORD ?= +WORDPRESS_USERNAME ?= admin +WORDPRESS_PASSWORD ?= password +WORDPRESS_PLUGINS ?= +WORDPRESS_SMTP_HOST ?= mailpit +WORDPRESS_SMTP_PORT_NUMBER ?= 1025 +WORDPRESS_SMTP_USER ?= +WORDPRESS_SMTP_PASSWORD ?= +WORDPRESS_SMTP_PROTOCOL ?= tls + +NODE_TAG ?= latest +NODE_PORT ?= 3000 +NODE_ENV ?= develop +NODE_DEBUG ?= +NODE_LOG_LEVEL ?= + +PHPMYADMIN_TAG ?= latest +PHPMYADMIN_HTTP_PORT ?= 8080 +PHPMYADMIN_HTTPS_PORT ?= 8443 +PHPMYADMIN_ALLOW_NO_PASSWORD ?= yes +PHPMYADMIN_DATABASE_HOST ?= mariadb +PHPMYADMIN_DATABASE_USER ?= user +PHPMYADMIN_DATABASE_PASSWORD ?= +PHPMYADMIN_DATABASE_PORT_NUMBER ?= 3306 +PHPMYADMIN_DATABASE_ENABLE_SSL ?= no +PHPMYADMIN_DATABASE_SSL_KEY ?= +PHPMYADMIN_DATABASE_SSL_CERT ?= +PHPMYADMIN_DATABASE_SSL_CA ?= +PHPMYADMIN_DATABASE_SSL_CA_PATH ?= +PHPMYADMIN_DATABASE_SSL_CIPHERS ?= +PHPMYADMIN_DATABASE_SSL_VERIFY ?= yes + +MAILPIT_TAG ?= latest +MAILPIT_HTTP_PORT ?= 8025 +MAILPIT_MAX_MESSAGES ?= 5000 + +OPENAI_KEY ?= + +PHPSTAN_PRO_WEB_PORT ?= + +GITHUB_TOKEN ?= + +FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID ?= +FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET ?= +FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED ?= false + +MODE ?= develop + +DOCKER_COMPOSE=docker compose +WORDPRESS_CONTAINER_NAME=wordpress +WORDPRESS_CONTAINER_USER=root +NODE_CONTAINER_NAME=node +NODE_CONTAINER_USER=root +NODE_CONTAINER_WORKSPACE_DIR=/app +TMP_DIR=tmp +DIST_DIR=dist +SVN_DIR=svn +SVN_ASSETS_DIR=.wordpress-org + +SVN_AUTH := $(if $(and $(SVN_USERNAME),$(SVN_PASSWORD)),--username $(SVN_USERNAME) --password $(SVN_PASSWORD),) + +all: setup up + +setup: check .gitconfig docker-compose.override.yml $(TMP_DIR)/certs $(TMP_DIR)/wait-for-it.sh set-env + +install: all wait install-wordpress + +test: setup test-wordpress + +deploy: install deploy-zip +ifeq ($(and $(GITHUB_ACTIONS),$(MODE)),false production) + deploy-svn +endif + +check: + @echo "Checking requirements" + @command -v mkcert >/dev/null 2>&1 || { echo >&2 "mkcert is required but not installed. Aborting."; exit 1; } + @command -v curl >/dev/null 2>&1 || { echo >&2 "curl is required but not installed. Aborting."; exit 1; } + @command -v git >/dev/null 2>&1 || { echo >&2 "git is required but not installed. Aborting."; exit 1; } + @command -v rsync >/dev/null 2>&1 || { echo >&2 "rsync is required but not installed. Aborting."; exit 1; } + @command -v zip >/dev/null 2>&1 || { echo >&2 "zip is required but not installed. Aborting."; exit 1; } +ifeq ($(and $(GITHUB_ACTIONS),$(MODE)),true production) + @command -v svn >/dev/null 2>&1 || { echo >&2 "svn is required but not installed. Aborting."; exit 1; } +endif + +.gitconfig: + @echo "Setting up .gitconfig" + @cp -a .gitconfig.dist .gitconfig + @git config --local include.path ../.gitconfig + +docker-compose.override.yml: + @echo "Setting up docker-compose.override.yml" + @cp -a docker-compose.override.yml.dist docker-compose.override.yml + +$(TMP_DIR)/certs: + @echo "Generating SSL certificates" + @mkdir -p $(TMP_DIR)/certs + @mkcert -cert-file "$(TMP_DIR)/certs/server.crt" -key-file "$(TMP_DIR)/certs/server.key" localhost 127.0.0.1 ::1 bs-local.com "*.bs-local.com" + @chmod +r $(TMP_DIR)/certs/server.* + +$(TMP_DIR)/wait-for-it.sh: + @echo "Downloading wait-for-it.sh" + @mkdir -p $(TMP_DIR) + @curl -o $(TMP_DIR)/wait-for-it.sh https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh + @chmod +x $(TMP_DIR)/wait-for-it.sh + +set-env: + @echo "Setting environment variables" +ifeq ($(PLUGIN_NAME),) + @$(eval PLUGIN_NAME := $(shell basename `git rev-parse --show-toplevel`)) + @if [ -z "$(PLUGIN_NAME)" ]; then \ + echo "PLUGIN_NAME is not set and could not be determined."; \ + exit 1; \ + fi +endif +ifeq ($(PLUGIN_VERSION),) + @$(eval PLUGIN_VERSION := $(shell git describe --tags --abbrev=0 2>/dev/null | sed 's/^v//')) + @if [ -z "$(PLUGIN_VERSION)" ]; then \ + echo "No git tags found. Please create a tag before running make."; \ + exit 1; \ + fi +endif + +wait: + @echo "Waiting for services to be ready" + @$(TMP_DIR)/wait-for-it.sh localhost:80 --timeout=300 --strict -- echo "WordPress is up" + @$(TMP_DIR)/wait-for-it.sh localhost:$(NODE_PORT) --timeout=300 --strict -- echo "Node is up" + + @echo "Waiting for WordPress to complete setup" +#https://cardinalby.github.io/blog/post/github-actions/implementing-deferred-steps/ +# method #1 +# @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'timeout=300; while [ $$timeout -gt 0 ]; do \ +# [ -f $${WORDPRESS_CONF_FILE:-/bitnami/wordpress/wp-config.php} ] && break; \ +# echo "Waiting for wp-config.php ($$timeout seconds left)..."; \ +# sleep 5; timeout=$$((timeout - 5)); \ +# done; \ +# [ $$timeout -gt 0 ] || { echo "Error: Timeout reached, wp-config.php not found"; exit 1; }' + +# method #2 + @./build/docker/logs-catcher.sh $(WORDPRESS_CONTAINER_NAME) "WordPress setup finished" 300 + +up: + @echo "Starting docker compose services" + @MARIADB_TAG=${MARIADB_TAG} WORDPRESS_TAG=${WORDPRESS_TAG} NODE_TAG=${NODE_TAG} $(DOCKER_COMPOSE) up -d --build + +install-node: clean-node + @echo "[node] Installing dependencies" + @$(DOCKER_COMPOSE) exec -u$(NODE_CONTAINER_USER) $(NODE_CONTAINER_NAME) sh -c 'cd $(NODE_CONTAINER_WORKSPACE_DIR)/build/front && npm install && npm run develop && npm run production' + +install-wordpress: clean-wordpress +ifneq ($(GITHUB_TOKEN),) + @echo "[wordpress] Updating composer config ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'composer config -g github-oauth.github.com $(GITHUB_TOKEN)' +endif + + @echo "[wordpress] Initializing git repository ($(MODE))" +#FIXED: safe.directory avoids Github fatal error: detected dubious ownership in repository + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'cd /tmp/$(PLUGIN_NAME)-plugin && { \ + git init; \ + git config --global user.email "you@example.com"; \ + git config --global user.name "Your Name"; \ + git config --global --add safe.directory /tmp/$(PLUGIN_NAME)-plugin; \ + }' + + @echo "[wordpress] Creating symbolic links ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'ln -sfn /tmp/$(PLUGIN_NAME)-plugin $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME)' + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'ln -sfn /tmp/$(PLUGIN_NAME)-plugin/tests/data/wp-cfm $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/config' + + @echo "[wordpress] Updating wp-config.php ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c "sed -i '/define('\''FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID'\'',/d' $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-config.php && sed -i '1a define('\''FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID'\'', '\''${FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID}'\'');' $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-config.php" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c "sed -i '/define('\''FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET'\'',/d' $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-config.php && sed -i '2a define('\''FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET'\'', '\''${FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET}'\'');' $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-config.php" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c "sed -i '/define('\''FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED'\'',/d' $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-config.php && sed -i '3a define('\''FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED'\'', ${FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED});' $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-config.php" + + @echo "[wordpress] Installing dependencies ($(MODE))" +# PHP 7.x and 8.x interpret composer.json's `extra.installer-paths` differently, perhaps due to different versions of Composer. +# With PHP 7.x `cd $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME)` and +# `extra.installer-paths."../{$name}/"` in the composer.json seems to be sufficient, while with PHP 8.x it is not. +# Adding Composer's `--working-dir` option with PHP 8.x doesn't work. +# For this reason, the absolute path `extra.installer-paths` had to be specified in the composer.json. +ifeq ($(MODE),production) + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'cd $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME) && composer install --optimize-autoloader --classmap-authoritative --no-dev --no-interaction' +else + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'cd $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME) && composer update --optimize-autoloader --no-interaction' +endif + + @echo "[wordpress] Activate WP-CFM plugin ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'wp plugin activate wp-cfm --allow-root' + + @echo "[wordpress] Pulling WP-CFM bundles ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'for file in $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/config/*.json; do wp config pull $$(basename $$file .json) --allow-root; done' + + @echo "[wordpress] Cleaning ACF data ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'wp acf clean --allow-root' + + @echo "[wordpress] Importing ACF JSON files ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'for file in $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME)/tests/data/acf/*.json; do wp acf import --json_file=$${file} --allow-root; done' + + @echo "[wordpress] Flushing rewrite rules ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'wp rewrite flush --allow-root' + + @echo "[wordpress] Changing folders permissions ($(MODE))" +# avoids write permission errors when PHP writes w/ 1001 user + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'chmod -Rf o+w /tmp/$(PLUGIN_NAME)-plugin/tests/data/wp-cfm' + + @echo "[wordpress] Changing folders owner ($(MODE))" + @$(DOCKER_COMPOSE) exec -u $(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'for dir in $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/*; do if [ "$$(basename $$dir)" != "$(PLUGIN_NAME)" ]; then chown -R 1001 $$dir; fi; done' + + @echo "[wordpress] Changing wp-config.php permissions ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'chmod 666 $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-config.php' + +#FIXME: nullmailer doesn't stay started + @echo "[wordpress] Starting nullmailer ($(MODE))" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'service nullmailer start' + +test-node: + @echo "[node] Running tests" + @$(DOCKER_COMPOSE) exec -u$(NODE_CONTAINER_USER) $(NODE_CONTAINER_NAME) sh -c 'cd $(NODE_CONTAINER_WORKSPACE_DIR)/build/front && npm run test' + +test-wordpress: + @echo "[wordpress] Updating git repository" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'cd $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME) && git add .' + + @echo "[wordpress] Running tests" +ifeq ($(GITHUB_ACTIONS),true) + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'cd $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME) && ./vendor/bin/grumphp run --no-interaction' +else + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'cd $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME) && ./vendor/bin/grumphp run' +endif + +deploy-zip: + @echo "Deploying to zip file" + @mkdir -p $(DIST_DIR)/$(PLUGIN_NAME) + @cd $(PLUGIN_NAME) && rsync -av --delete --exclude-from=exclude_from.txt --include-from=include_from.txt . ../$(DIST_DIR)/$(PLUGIN_NAME)/ + @cd $(DIST_DIR)/$(PLUGIN_NAME) && zip -r ../$(PLUGIN_NAME).zip . + +deploy-svn: + @echo "Deploying to WordPress SVN" + @if ! svn ls https://plugins.svn.wordpress.org/$(PLUGIN_NAME)/ >/dev/null 2>&1; then \ + echo "SVN repository does not exist. Aborting."; \ + exit 1; \ + fi + @svn $(SVN_AUTH) checkout https://plugins.svn.wordpress.org/$(PLUGIN_NAME)/ $(TMP_DIR)/$(SVN_DIR) + @CURRENT_BRANCH=$$(git rev-parse --abbrev-ref HEAD); \ + if [[ "$$CURRENT_BRANCH" != support/* ]]; then \ + echo "Deploying to trunk and assets"; \ + rsync -av --delete $(DIST_DIR)/$(PLUGIN_NAME)/ $(TMP_DIR)/$(SVN_DIR)/trunk/; \ + rsync -av --delete $(SVN_ASSETS_DIR)/ $(TMP_DIR)/$(SVN_DIR)/assets/; \ + fi + @if [ ! -d "$(TMP_DIR)/$(SVN_DIR)/tags/$(PLUGIN_VERSION)" ]; then \ + echo "Deploying to tags"; \ + mkdir -p $(TMP_DIR)/$(SVN_DIR)/tags/$(PLUGIN_VERSION); \ + rsync -av --delete $(DIST_DIR)/$(PLUGIN_NAME)/ $(TMP_DIR)/$(SVN_DIR)/tags/$(PLUGIN_VERSION)/; \ + fi + @cd $(TMP_DIR)/$(SVN_DIR) && svn add --force * --auto-props --parents --depth infinity -q + @cd $(TMP_DIR)/$(SVN_DIR) && svn $(SVN_AUTH) commit -m "release $(PLUGIN_VERSION)" + @rm -rf $(TMP_DIR)/$(SVN_DIR) $(DIST_DIR)/$(PLUGIN_NAME) + +clean-node: + @echo "[node] Cleaning artifacts" + @$(DOCKER_COMPOSE) exec -u$(NODE_CONTAINER_USER) $(NODE_CONTAINER_NAME) sh -c 'cd $(NODE_CONTAINER_WORKSPACE_DIR) && rm -rf build/front/node_modules build/front/package-lock.json $(PLUGIN_NAME)/asset' + +clean-wordpress: + @echo "[wordpress] Cleaning artifacts" + @$(DOCKER_COMPOSE) exec -u$(WORDPRESS_CONTAINER_USER) $(WORDPRESS_CONTAINER_NAME) sh -c 'if [ -d "$${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME)" ]; then cd $${WORDPRESS_BASE_DIR:-/bitnami/wordpress}/wp-content/plugins/$(PLUGIN_NAME) && rm -rf .git vendor composer.lock; fi' + @rm -rf $(DIST_DIR)/* + +down: + @echo "Stopping docker compose services" + @$(DOCKER_COMPOSE) down + +help: + @echo "Makefile targets:" + @echo " all - Start environment" + @echo " install - Start environment and install dependencies" + @echo " test - Run tests" + @echo " deploy - Start environment, install dependencies and deploy to $(MODE)" + @echo " down - Stop environment" diff --git a/README.md b/README.md new file mode 100644 index 0000000..2f469dc --- /dev/null +++ b/README.md @@ -0,0 +1,205 @@ +![](.wordpress-org/banner-1544x500.jpg) + +![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/frugan-dev/upload-field-to-youtube-for-acf/total) +![GitHub Actions Workflow Status](https://github.com/frugan-dev/upload-field-to-youtube-for-acf/actions/workflows/main.yml/badge.svg) +![GitHub Issues](https://img.shields.io/github/issues/frugan-dev/upload-field-to-youtube-for-acf) +![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen) +![GitHub Release](https://img.shields.io/github/v/release/frugan-dev/upload-field-to-youtube-for-acf) +![License](https://img.shields.io/github/license/frugan-dev/upload-field-to-youtube-for-acf) + + +# Upload Field to YouTube for ACF (WordPress Plugin) + +__Upload Field to YouTube for ACF__ is a WordPress plugin that allows you to upload videos directly to YouTube via API from the WordPress admin area and/or select existing videos on your YouTube channel based on playlists. It is particularly useful for managing videos that may be associated with Custom Post Types (CPT). + +To use this plugin, you need to configure Google oAuth credentials so the plugin can authenticate with the user's YouTube channel. + +## Requirements + +- PHP ^8.0 +- WordPress ^5.7 || ^6.0 +- [Advanced Custom Fields](https://www.advancedcustomfields.com) ^5.9 || ^6.0 + +## Features + +- direct video upload to YouTube from CPTs within the WordPress interface +- selection of existing YouTube videos, filtered by playlists +- support for "unlisted" video privacy, making this plugin ideal for managing private or exclusive videos tied to specific content +- use official [ACF Example Field Type](https://github.com/AdvancedCustomFields/acf-example-field-type) +- support for logging with [Wonolog](https://github.com/inpsyde/Wonolog) ^2.x, if available +- made with [Vanilla JS](http://vanilla-js.com) (no jQuery) +- autoload classes with Composer and PSR-4 +- support ACF nested repeater +- translations managed via [Crowdin](https://crowdin.com/project/upload-field-to-youtube-for-acf) + +## Installation + +You can install the plugin in three ways: manually, via Composer (wpackagist) _(coming soon)_ or via Composer (package). + +
+Manual Installation + +1. Go to the [Releases](../../releases) section of this repository. +2. Download the latest release zip file. +3. Log in to your WordPress admin dashboard. +4. Navigate to `Plugins` > `Add New`. +5. Click `Upload Plugin`. +6. Choose the downloaded zip file and click `Install Now`. + +
+ +
+Installation via Composer "wpackagist" (coming soon) + +If you use Composer to manage WordPress plugins, you can install it from [WordPress Packagist](https://wpackagist.org): + +1. Open your terminal. +2. Navigate to the root directory of your WordPress installation. +3. Ensure your `composer.json` file has the following configuration: * + +```json +{ + "require": { + "composer/installers": "^1.0 || ^2.0", + "wpackagist-plugin/upload-field-to-youtube-for-acf": "^0.1" + }, + "extra": { + "installer-paths": { + "wp-content/plugins/{$name}/": [ + "type:wordpress-plugin" + ] + } + } +} +``` +4. Run the following command: + +```sh +composer update +``` + + +_Note:_ +_* `composer/installers` might already be required by another dependency._ + +
+ +
+Installation via Composer "package" + +If you use Composer to manage WordPress plugins, you can install it from this repository directly: + +1. Open your terminal. +2. Navigate to the root directory of your WordPress installation. +3. Ensure your `composer.json` file has the following configuration: * + +```json +{ + "require": { + "composer/installers": "^1.0 || ^2.0", + "frugan-dev/upload-field-to-youtube-for-acf": "^0.1" + }, + "repositories": [ + { + "type": "package", + "package": { + "name": "frugan-dev/upload-field-to-youtube-for-acf", + "version": "0.1.0", + "type": "wordpress-plugin", + "dist": { + "url": "https://github.com/frugan-dev/upload-field-to-youtube-for-acf/releases/download/v0.1.0/upload-field-to-youtube-for-acf.zip", + "type": "zip" + } + } + } + ], + "extra": { + "installer-paths": { + "wp-content/plugins/{$name}/": [ + "type:wordpress-plugin" + ] + } + } +} +``` +4. Run the following command: + +```sh +composer update +``` + + +_Note:_ +_* `composer/installers` might already be required by another dependency._ + +
+ +## Configuration + +Once installed: + +1. In your WordPress admin dashboard, navigate to the `Plugins` section and click `Activate Plugin`. +2. Create a new field via ACF and select the `YouTube Uploader` type. +3. Read the description above for advanced usage instructions. + +### Creating the oAuth Credentials + +1. Go to the [Google API Console](https://console.developers.google.com/). +2. Create a project or select an existing one. +3. Navigate to the **OAuth consent screen** section and configure the required details to enable authentication. +4. Then, go to **Credentials** and create an **OAuth 2.0 Client ID**. +5. In the **Authorized redirect URIs** field, enter your WordPress site's callback URL (e.g., `https://domain.tld/wp-admin/`). +6. Obtain the `Client ID` and `Client Secret`. + +#### Limitations + +If you use the API upload mode, please note this important notice [here](https://developers.google.com/youtube/v3/docs/videos/insert): + +> All videos uploaded via the `videos.insert` endpoint from unverified API projects created after July 28, 2020, will be restricted to private viewing mode. To lift this restriction, each API project must undergo an audit to verify compliance with the YouTube Terms of Service. + +### Setting in wp-config.php + +Add the following lines to `wp-config.php` to define the oAuth credentials: + +```php +define('FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID', 'Client ID'); +define('FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET', 'Client Secret'); +``` + +### Enabling Cache Busting + +If you use filename-based cache busting, the plugin supports the following definition in `wp-config.php`: + +```php +define('FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED', true); +``` + +For more information, see filename-based cache busting on [Nginx](https://github.com/h5bp/server-configs-nginx/blob/main/h5bp/location/web_performance_filename-based_cache_busting.conf) and [Apache](https://github.com/h5bp/server-configs-apache/blob/main/h5bp/web_performance/filename-based_cache_busting.conf). + +## More info + +See [LINKS](docs/LINKS.md) file. + +## Changelog + +See auto-[CHANGELOG](CHANGELOG.md) file. + +## Contributing + +For your contributions please use: + +- [git-flow workflow](https://danielkummer.github.io/git-flow-cheatsheet/) +- [conventional commits](https://www.conventionalcommits.org) + +## Sponsor + +[Buy Me A Coffee](https://buymeacoff.ee/frugan) + +## License + +(ɔ) Copyleft 2024 [Frugan](https://frugan.it). +[GNU GPLv3](https://choosealicense.com/licenses/gpl-3.0/), see [LICENSE](LICENSE) file. diff --git a/auto-changelog.hbs b/auto-changelog.hbs new file mode 100644 index 0000000..7e48f54 --- /dev/null +++ b/auto-changelog.hbs @@ -0,0 +1,37 @@ +{{#each releases}} + {{#if href}} + ## [{{title}}]({{href}}){{#if tag}} - {{isoDate}}{{/if}} + {{else}} + ## {{title}}{{#if tag}} - {{isoDate}}{{/if}} + {{/if}} + + {{#if summary}} + {{summary}} + {{/if}} + + {{#if merges}} + ### Merged + + {{#each merges}} + - {{{message}}} {{#if href}}[`#{{id}}`]({{href}}){{/if}} + {{/each}} + {{/if}} + + {{#if fixes}} + ### Fixed + + {{#each fixes}} + - {{{commit.subject}}}{{#each fixes}} {{#if href}}[`#{{id}}`]({{href}}){{/if}}{{/each}} + {{/each}} + {{/if}} + + {{#commit-list commits heading='### Commits'}} + - {{#if breaking}}**Breaking change:** {{/if}}{{{subject}}} {{#if href}}[`{{shorthash}}`]({{href}}){{/if}} + {{/commit-list}} + +{{/each}} + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). diff --git a/build/docker/Dockerfile.wordpress b/build/docker/Dockerfile.wordpress new file mode 100644 index 0000000..5d8f333 --- /dev/null +++ b/build/docker/Dockerfile.wordpress @@ -0,0 +1,56 @@ +ARG WORDPRESS_TAG=latest +FROM docker.io/bitnami/wordpress:${WORDPRESS_TAG} + +USER root + +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update \ + #&& echo "nullmailer nullmailer/defaultdomain string example.com" | debconf-set-selections \ + #&& echo "nullmailer nullmailer/relayhost string smtp.example.com" | debconf-set-selections \ + #&& echo "nullmailer nullmailer/relayuser string username" | debconf-set-selections \ + #&& echo "nullmailer nullmailer/relaypass password" | debconf-set-selections \ + #&& echo "nullmailer nullmailer/adminaddr string admin@example.com" | debconf-set-selections \ + && echo "nullmailer nullmailer/mailname string me" | debconf-set-selections \ + && apt-get install -y \ + # required by composer + git \ + unzip \ + # required by phpstan pro + xdg-utils \ + # fix missing sendmail + nullmailer \ + && rm -rf /var/lib/apt/lists/* + +ARG WORDPRESS_SMTP_HOST +ARG WORDPRESS_SMTP_PORT_NUMBER +ARG WORDPRESS_SMTP_USER +ARG WORDPRESS_SMTP_PASSWORD +ARG WORDPRESS_SMTP_PROTOCOL + +# method #1 +COPY build/docker/sendmail-wrapper /usr/sbin/sendmail-wrapper + +RUN echo "${WORDPRESS_SMTP_HOST} smtp \ + --port=${WORDPRESS_SMTP_PORT_NUMBER} \ + --user=${WORDPRESS_SMTP_USER} \ + --pass=${WORDPRESS_SMTP_PASSWORD} \ + # https://manpages.debian.org/experimental/nullmailer/remotes.5#remotes + # `tls` option automatically switch the default port to 465 + #--${WORDPRESS_SMTP_PROTOCOL} \ + --insecure" > /etc/nullmailer/remotes \ + && chmod +x /usr/sbin/sendmail-wrapper \ + && ln -sf /usr/sbin/sendmail-wrapper /usr/sbin/sendmail + +RUN { \ + # available in bitnami/wordpress, but not actived + echo 'extension = apcu'; \ + # superfluous as bitnami/wordpress uses mod_php, so the .user.ini file doesn't work + echo 'user_ini.cache_ttl = 0'; \ + #https://docs.bitnami.com/aws/infrastructure/lamp/administration/disable-cache/ + echo 'opcache.enable = 0'; \ + # method #2 + #echo 'sendmail_path = "/usr/bin/nullmailer-inject -f noreply@localhost"'; \ + } >> /opt/bitnami/php/etc/php.ini + +USER 1001 diff --git a/build/docker/logs-catcher.sh b/build/docker/logs-catcher.sh new file mode 100755 index 0000000..f1db928 --- /dev/null +++ b/build/docker/logs-catcher.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +CONTAINER_NAME=$1 +SEARCH_STRING=$2 +TIMEOUT=$3 +INTERVAL=5 + +elapsed_time=0 + +while [ $elapsed_time -lt "$TIMEOUT" ]; do + if docker compose logs "$CONTAINER_NAME" | grep -m 1 "$SEARCH_STRING"; then + echo "String '$SEARCH_STRING' found in '$CONTAINER_NAME' container logs." + exit 0 + fi + + echo "Waiting for string '$SEARCH_STRING' in '$CONTAINER_NAME' container logs ($((TIMEOUT - elapsed_time)) seconds left to timeout)..." + sleep $INTERVAL + elapsed_time=$((elapsed_time + INTERVAL)) +done + +echo "Error: Timeout reached or string '$SEARCH_STRING' not found in '$CONTAINER_NAME' container logs." +exit 1 diff --git a/build/docker/sendmail-wrapper b/build/docker/sendmail-wrapper new file mode 100755 index 0000000..de20075 --- /dev/null +++ b/build/docker/sendmail-wrapper @@ -0,0 +1,29 @@ +#!/bin/bash + +default_sender="noreply@localhost" +has_sender=false +args=() + +while [ $# -gt 0 ]; do + case "$1" in + -i) shift ;; # nullmailer doesn't support this option + -t) shift ;; # nullmailer doesn't support this option + -f) + has_sender=true + args+=("$1" "$2") + shift 2 + ;; + *) + args+=("$1") + shift + ;; + esac +done + +if [ "$has_sender" = false ]; then + args=("-f" "$default_sender") +fi + +echo "Called '/usr/bin/nullmailer-inject' with arguments: ${args[*]}" >>/dev/stdout + +exec /usr/bin/nullmailer-inject "${args[@]}" diff --git a/docker-compose.override.yml.dist b/docker-compose.override.yml.dist new file mode 100644 index 0000000..026ba60 --- /dev/null +++ b/docker-compose.override.yml.dist @@ -0,0 +1,18 @@ +#services: + + #wordpress: + # #https://stackoverflow.com/a/65592942/3929620 + # #https://github.com/docker/for-mac/issues/5873 + # platform: linux/x86_64 + + #node: + # environment: + # #https://github.com/vercel/next.js/issues/30296#issuecomment-952128906 + # NODE_OPTIONS: --openssl-legacy-provider + # #https://github.com/lovell/sharp/issues/3894#issuecomment-1851896550 + # #https://github.com/lovell/sharp/issues/3893#issuecomment-1888913864 + # #https://github.com/lovell/sharp/pull/3897#issue-2043375386 + # #https://github.com/lovell/sharp/blob/bd4f1abba28831b8db246366f2f5f8d5ed701eac/#test/beforeEach.js#L9 + # #VIPS_NOVECTOR: true + # #https://stackoverflow.com/a/52479399/3929620 + # #NODE_TLS_REJECT_UNAUTHORIZED: 0 \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..f803b6a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,119 @@ +services: + + mariadb: + container_name: mariadb + image: docker.io/bitnami/mariadb:${MARIADB_TAG:-latest} + volumes: + - mariadb_data:/bitnami/mariadb + environment: + ALLOW_EMPTY_PASSWORD: ${MARIADB_ALLOW_EMPTY_PASSWORD:-yes} + MARIADB_USER: ${MARIADB_USER:-user} + MARIADB_PASSWORD: ${MARIADB_PASSWORD:-} + MARIADB_DATABASE: ${MARIADB_DATABASE:-wordpress} + + wordpress: + container_name: wordpress + build: + context: . + dockerfile: build/docker/Dockerfile.wordpress + args: + WORDPRESS_TAG: ${WORDPRESS_TAG:-latest} + WORDPRESS_SMTP_HOST: ${WORDPRESS_SMTP_HOST:-mailpit} + WORDPRESS_SMTP_PORT_NUMBER: ${WORDPRESS_SMTP_PORT_NUMBER:-1025} + WORDPRESS_SMTP_USER: ${WORDPRESS_SMTP_USER:-} + WORDPRESS_SMTP_PASSWORD: ${WORDPRESS_SMTP_PASSWORD:-} + WORDPRESS_SMTP_PROTOCOL: ${WORDPRESS_SMTP_PROTOCOL:-tls} + depends_on: + - mariadb + ports: + - 80:8080 + - 443:8443 + - ${PHPSTAN_PRO_WEB_PORT:-11111}:11111 + volumes: + - wordpress_data:/bitnami/wordpress:rw + # `-plugin` suffix avoids conflicts + - ${PWD}/${PLUGIN_NAME:-upload-field-to-youtube-for-acf}:/tmp/${PLUGIN_NAME:-upload-field-to-youtube-for-acf}-plugin:rw + - ${PWD}/tmp/certs:/certs + - ${PWD}/tmp/phpstan-fixer:/tmp/phpstan-fixer:rw + environment: + ALLOW_EMPTY_PASSWORD: ${WORDPRESS_ALLOW_EMPTY_PASSWORD:-yes} + WORDPRESS_DATABASE_HOST: ${WORDPRESS_DATABASE_HOST:-mariadb} + WORDPRESS_DATABASE_PORT_NUMBER: ${WORDPRESS_DATABASE_PORT_NUMBER:-3306} + WORDPRESS_DATABASE_NAME: ${WORDPRESS_DATABASE_NAME:-wordpress} + WORDPRESS_DATABASE_USER: ${WORDPRESS_DATABASE_USER:-user} + WORDPRESS_DATABASE_PASSWORD: ${WORDPRESS_DATABASE_PASSWORD:-} + WORDPRESS_USERNAME: ${WORDPRESS_USERNAME:-admin} + WORDPRESS_PASSWORD: ${WORDPRESS_PASSWORD:-password} + WORDPRESS_PLUGINS: ${WORDPRESS_PLUGINS:-} + WORDPRESS_SMTP_HOST: ${WORDPRESS_SMTP_HOST:-mailpit} + WORDPRESS_SMTP_PORT_NUMBER: ${WORDPRESS_SMTP_PORT_NUMBER:-1025} + WORDPRESS_SMTP_USER: ${WORDPRESS_SMTP_USER:-} + WORDPRESS_SMTP_PASSWORD: ${WORDPRESS_SMTP_PASSWORD:-} + WORDPRESS_SMTP_PROTOCOL: ${WORDPRESS_SMTP_PROTOCOL:-tls} + OPENAI_KEY: ${OPENAI_KEY:-} + PHPSTAN_PRO_WEB_PORT: ${PHPSTAN_PRO_WEB_PORT:-11111} + GITHUB_TOKEN: ${GITHUB_TOKEN:-} + + node: + container_name: node + image: docker.io/bitnami/node:${NODE_TAG:-latest} + ports: + - ${NODE_PORT:-3000}:3000 + volumes: + - ${PWD}:/app + #https://dev.to/igmrrf/docker-react-exited-with-code-0-398n + #https://stackoverflow.com/a/63427684/3929620 + #https://stackoverflow.com/a/52336349/3929620 + tty: true + environment: + NODE_ENV: ${NODE_ENV:-develop} + DEBUG: ${NODE_DEBUG:-} + LOG_LEVEL: ${NODE_LOG_LEVEL:-} + + phpmyadmin: + container_name: phpmyadmin + image: docker.io/bitnami/phpmyadmin:${PHPMYADMIN_TAG:-latest} + ports: + - ${PHPMYADMIN_HTTP_PORT:-8080}:8080 + - ${PHPMYADMIN_HTTPS_PORT:-8443}:8443 + depends_on: + - mariadb + volumes: + - ${PWD}/tmp/certs:/opt/bitnami/apache/conf/bitnami/certs + environment: + DATABASE_ALLOW_NO_PASSWORD: ${PHPMYADMIN_ALLOW_NO_PASSWORD:-yes} + DATABASE_HOST: ${PHPMYADMIN_DATABASE_HOST:-mariadb} + DATABASE_USER: ${PHPMYADMIN_DATABASE_USER:-user} + DATABASE_PASSWORD: ${PHPMYADMIN_DATABASE_PASSWORD:-} + DATABASE_PORT_NUMBER: ${PHPMYADMIN_DATABASE_PORT_NUMBER:-3306} + DATABASE_ENABLE_SSL: ${PHPMYADMIN_DATABASE_ENABLE_SSL:-no} + DATABASE_SSL_KEY: ${PHPMYADMIN_DATABASE_SSL_KEY:-} + DATABASE_SSL_CERT: ${PHPMYADMIN_DATABASE_SSL_CERT:-} + DATABASE_SSL_CA: ${PHPMYADMIN_DATABASE_SSL_CA:-} + DATABASE_SSL_CA_PATH: ${PHPMYADMIN_DATABASE_SSL_CA_PATH:-} + DATABASE_SSL_CIPHERS: ${PHPMYADMIN_DATABASE_SSL_CIPHERS:-} + DATABASE_SSL_VERIFY: ${PHPMYADMIN_DATABASE_SSL_VERIFY:-yes} + + mailpit: + container_name: mailpit + image: docker.io/axllent/mailpit:${MAILPIT_TAG:-latest} + ports: + - ${MAILPIT_HTTP_PORT:-8025}:8025 + volumes: + - mailpit_data:/data + - ${PWD}/tmp/certs:/certs + environment: + MP_MAX_MESSAGES: ${MAILPIT_MAX_MESSAGES:-5000} + MP_DATA_FILE: /data/mailpit.db + MP_SMTP_AUTH_ACCEPT_ANY: 1 + MP_SMTP_AUTH_ALLOW_INSECURE: 1 + MP_UI_TLS_CERT: /certs/server.crt + MP_UI_TLS_KEY: /certs/server.key + +volumes: + mariadb_data: + driver: local + wordpress_data: + driver: local + mailpit_data: + driver: local diff --git a/docs/LINKS.md b/docs/LINKS.md new file mode 100644 index 0000000..196634a --- /dev/null +++ b/docs/LINKS.md @@ -0,0 +1,5 @@ +# Usefull links + +## License + +- https://choosealicense.com diff --git a/upload-field-to-youtube-for-acf/.gitignore b/upload-field-to-youtube-for-acf/.gitignore new file mode 100644 index 0000000..130be9d --- /dev/null +++ b/upload-field-to-youtube-for-acf/.gitignore @@ -0,0 +1,43 @@ +#asset/ + +grumphp.yml +!grumphp.yml.dist + +.php-cs-fixer* +!.php-cs-fixer.dist* + +.phpstan.neon +!phpstan.neon.dist + + +# Created by https://www.toptal.com/developers/gitignore/api/git,composer +# Edit at https://www.toptal.com/developers/gitignore?templates=git,composer + +### Composer ### +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +### Git ### +# Created by git for backups. To disable backups in Git: +# $ git config --global mergetool.keepBackup false +*.orig + +# Created by git when using merge tools for conflicts +*.BACKUP.* +*.BASE.* +*.LOCAL.* +*.REMOTE.* +*_BACKUP_*.txt +*_BASE_*.txt +*_LOCAL_*.txt +*_REMOTE_*.txt + +# End of https://www.toptal.com/developers/gitignore/api/git,composer + + +### Override ### + diff --git a/upload-field-to-youtube-for-acf/.php-cs-fixer.dist.php b/upload-field-to-youtube-for-acf/.php-cs-fixer.dist.php new file mode 100644 index 0000000..68d7bac --- /dev/null +++ b/upload-field-to-youtube-for-acf/.php-cs-fixer.dist.php @@ -0,0 +1,69 @@ + + * + * This source file is subject to the GNU GPLv3 or later license that is bundled + * with this source code in the file LICENSE. + */ + +use PhpCsFixer\Config; +use PhpCsFixer\ConfigurationException\InvalidConfigurationException; +use PhpCsFixer\Finder; +use PhpCsFixer\FixerFactory; +use PhpCsFixer\RuleSet; + +$header = <<<'EOF' + This file is part of the WordPress plugin "Upload Field to YouTube for ACF". + + (ɔ) Frugan + + This source file is subject to the GNU GPLv3 or later license that is bundled + with this source code in the file LICENSE. + EOF; + +// exclude will work only for directories, so if you need to exclude file, try notPath +$finder = Finder::create() + ->in([__DIR__]) + ->exclude(['patch', 'vendor']) + ->append([__DIR__.'/.php-cs-fixer.dist.php']) +; + +$config = (new Config()) + ->setCacheFile(sys_get_temp_dir().'/.php_cs.cache') + ->setRiskyAllowed(true) + ->setRules([ + // https://mlocati.github.io/php-cs-fixer-configurator + '@PhpCsFixer' => true, + '@PhpCsFixer:risky' => true, + '@PHP80Migration' => true, + '@PHP80Migration:risky' => true, + 'header_comment' => ['header' => $header], + ]) + ->setFinder($finder) +; + +// special handling of fabbot.io service if it's using too old PHP CS Fixer version +if (false !== getenv('FABBOT_IO')) { + try { + // @phpstan-ignore-next-line + FixerFactory::create() + ->registerBuiltInFixers() + ->registerCustomFixers($config->getCustomFixers()) + // @phpstan-ignore-next-line + ->useRuleSet(new RuleSet($config->getRules())) + ; + } catch (InvalidConfigurationException $e) { + $config->setRules([]); + } catch (UnexpectedValueException $e) { + $config->setRules([]); + } catch (InvalidArgumentException $e) { + $config->setRules([]); + } +} + +return $config; diff --git a/upload-field-to-youtube-for-acf/asset/css/jquery-ui.min.css b/upload-field-to-youtube-for-acf/asset/css/jquery-ui.min.css new file mode 100644 index 0000000..121f222 --- /dev/null +++ b/upload-field-to-youtube-for-acf/asset/css/jquery-ui.min.css @@ -0,0 +1,7 @@ +/*! jQuery UI - v1.12.1 - 2016-09-14 +* http://jqueryui.com +* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css +* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px +* Copyright jQuery Foundation and other contributors; Licensed MIT */ + +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,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");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666} \ No newline at end of file diff --git a/upload-field-to-youtube-for-acf/asset/css/main.css b/upload-field-to-youtube-for-acf/asset/css/main.css new file mode 100644 index 0000000..590f3e2 --- /dev/null +++ b/upload-field-to-youtube-for-acf/asset/css/main.css @@ -0,0 +1,7 @@ +.youtube_uploader__wrapper .youtube_uploader__spinner { + display: none; +} +.youtube_uploader__wrapper .youtube_uploader__spinner .spinner { + float: none; + margin: 0; +} diff --git a/upload-field-to-youtube-for-acf/asset/js/main.js b/upload-field-to-youtube-for-acf/asset/js/main.js new file mode 100644 index 0000000..1571010 --- /dev/null +++ b/upload-field-to-youtube-for-acf/asset/js/main.js @@ -0,0 +1,388 @@ +/** + * Included when youtube_uploader fields are rendered for editing by publishers. + */ + ( function( $ ) { + class YTUploader { + /** + * $field is a jQuery object wrapping field elements in the editor. + */ + constructor($field) { + this.field = $field; + this.postId = acf.get('post_id'); + this.postStatus = window[this.field.data('type') + '_obj'].postStatus; + + this.init(); + } + + init() { + this.wrapper = document.querySelector('.' + this.field.data('key') + '__wrapper'); + if(this.wrapper) { + this.hiddenValueInput = this.wrapper.querySelector('.' + this.field.data('key') + '__hidden_value_input'); + this.hiddenModeInput = this.wrapper.querySelector('.' + this.field.data('key') + '__hidden_mode_input'); + this.tabs = this.wrapper.querySelector('.' + this.field.data('key') + '__tabs'); + this.fileInput = this.wrapper.querySelector('.' + this.field.data('key') + '__file_input'); + this.button = this.wrapper.querySelector('.' + this.field.data('key') + '__button'); + this.playlistSelect = this.wrapper.querySelector('.' + this.field.data('key') + '__playlist_select'); + this.videoSelect = this.wrapper.querySelector('.' + this.field.data('key') + '__video_select'); + this.responseDiv = this.wrapper.querySelector('.' + this.field.data('key') + '__response'); + this.spinner = this.wrapper.querySelector('.' + this.field.data('key') + '__spinner'); + + this.activeTab = localStorage.getItem(this.field.data('key') + '__active_tab') || 0; + this.playlistId = localStorage.getItem(this.field.data('key') + '_' + this.postId + '__playlist_id') || ''; + this.videoId = localStorage.getItem(this.field.data('key') + '_' + this.postId + '__video_id') || ''; + + this.initTabs(); + this.initUpload(); + this.initSelect(); + }; + } + + initTabs() { + if(this.tabs) { + $(this.tabs).tabs({ + active: parseInt(this.activeTab), + activate: (event, ui) => { + localStorage.setItem(this.field.data('key') + '__active_tab', ui.newTab.index()); + }, + }); + } + } + + initUpload() { + if(this.button) { + this.button.addEventListener('click', (event) => { + event.preventDefault(); + + let title = ''; + let excerpt = ''; + const file = this.fileInput && this.fileInput.files.length > 0 ? this.fileInput.files[0] : null; + + const isGutenberg = !!window.wp && !!window.wp.data; + + if (isGutenberg) { + //https://wordpress.stackexchange.com/a/351788/99214 + const { select } = wp.data; + title = select('core/editor').getEditedPostAttribute('title') || ''; + excerpt = select('core/editor').getEditedPostAttribute('excerpt') || ''; + } else { + title = document.getElementById('title') ? document.getElementById('title').value.trim() : ''; + excerpt = document.getElementById('excerpt') ? document.getElementById('excerpt').value.trim() : ''; + } + + if (!title /*|| !excerpt*/ || !file) { + let message = acf._e(this.field.data('type'), 'before_uploading'); + if (!title) message += '\n- ' + acf._e(this.field.data('type'), 'enter_title'); + //if (!excerpt) message += '\n- ' + acf._e(this.field.data('type'), 'enter_description'); + if (!file) message += '\n- ' + acf._e(this.field.data('type'), 'select_video_file'); + this.thickbox(message); + return; + } + + this.responseDiv.textContent = acf._e(this.field.data('type'), 'preparing_upload') + '...'; + this.button.disabled = true; + this.spinner.style.display = 'block'; + + const formData = new FormData(); + formData.append( 'action', 'get_youtube_upload_url' ); + formData.append( 'post_id', this.postId ); + formData.append( 'field_key', this.field.data('key') ); + + fetch(ajaxurl, { + method: 'POST', + body: formData, + }) + .then(response => { + const contentType = response.headers.get("content-type"); + if (contentType && contentType.indexOf("application/json") !== -1) { + return response.json(); + } else { + return response.text().then(text => ({ + success: false, + data: { + code: response.status, + message: this.getResponseMessage(text) + } + })); + } + }) + .then(response => { + const message = this.getResponseMessage(response); + if (!response.success) { + throw new Error(message); + } + + this.upload(file, response.data.upload_url); + }) + .catch(error => { + this.responseDiv.textContent = this.getResponseMessage(error); + this.button.disabled = false; + }) + .finally(() => { + this.spinner.style.display = 'none'; + }); + }); + } + } + + initSelect() { + if(this.playlistSelect && this.videoSelect) { + this.videoSelect.disabled = true; + + if (this.playlistId) { + this.playlistSelect.value = this.playlistId; + } + + this.loadVideosByPlaylist(); + + this.playlistSelect.addEventListener('change', (event) => { + this.playlistId = this.playlistSelect.value; + this.videoId = ''; + + this.hiddenValueInput.value = this.videoId; + this.hiddenModeInput.value = ''; + this.videoSelect.innerHTML = ''; + this.videoSelect.disabled = true; + + localStorage.setItem(this.field.data('key') + '_' + this.postId + '__playlist_id', this.playlistId); + localStorage.setItem(this.field.data('key') + '_' + this.postId + '__video_id', this.videoId); + + this.loadVideosByPlaylist(); + }); + + this.videoSelect.addEventListener('change', (event) => { + this.videoId = this.videoSelect.value; + + this.hiddenValueInput.value = this.videoId; + + localStorage.setItem(this.field.data('key') + '_' + this.postId + '__video_id', this.videoId); + }); + } + } + + loadVideosByPlaylist() { + if (this.playlistId) { + this.responseDiv.textContent = acf._e(this.field.data('type'), 'wait_please') + '...'; + this.spinner.style.display = 'block'; + + const formData = new FormData(); + formData.append('action', 'get_videos_by_playlist'); + formData.append('field_key', this.field.data('key')); + formData.append('playlist_id', this.playlistId); + + fetch(ajaxurl, { + method: 'POST', + body: formData, + }) + .then(response => { + const contentType = response.headers.get("content-type"); + if (contentType && contentType.indexOf("application/json") !== -1) { + return response.json(); + } else { + return response.text().then(text => ({ + success: false, + data: { + code: response.status, + message: this.getResponseMessage(text) + } + })); + } + }) + .then(response => { + const message = this.getResponseMessage(response); + if (!response.success) { + throw new Error(message); + } + + let defaultOption = document.createElement('option'); + defaultOption.value = ''; + defaultOption.text = '- ' + acf._e(this.field.data('type'), 'select') + ' -'; + this.videoSelect.appendChild(defaultOption); + + response.data.items.forEach(item => { + let option = document.createElement('option'); + option.value = item.id; + option.text = item.title + ' (' + item.id + ')'; + this.videoSelect.appendChild(option); + }); + + if (this.videoId) { + this.videoSelect.value = this.videoId; + this.hiddenValueInput.value = this.videoId; + } + + this.responseDiv.textContent = ''; + this.videoSelect.disabled = false; + }) + .catch(error => { + this.responseDiv.textContent = this.getResponseMessage(error); + }) + .finally(() => { + this.spinner.style.display = 'none'; + }); + } + } + + upload(file, uploadUrl) { + const xhr = new XMLHttpRequest(); + + xhr.upload.addEventListener('progress', (event) => { + if (event.lengthComputable) { + const percentComplete = (event.loaded / event.total) * 100; + this.responseDiv.textContent = acf._e(this.field.data('type'), 'loading') + ': ' + Math.round(percentComplete) + '%'; + } + }, false); + + xhr.addEventListener('load', (event) => { + if (xhr.status >= 200 && xhr.status < 300) { + const response = JSON.parse(xhr.responseText); + + this.responseDiv.textContent = acf._e(this.field.data('type'), 'video_uploaded_successfully'); + this.hiddenValueInput.value = response.id; + this.hiddenModeInput.value = 'upload'; + + this.save(response.id); + } else { + this.responseDiv.textContent = acf._e(this.field.data('type'), 'error_while_uploading'); + this.button.disabled = false; + } + }); + + xhr.addEventListener('error', (event) => { + this.responseDiv.textContent = acf._e(this.field.data('type'), 'network_error_while_uploading'); + this.button.disabled = false; + }); + + xhr.open('PUT', uploadUrl, true); + xhr.setRequestHeader('Content-Type', 'application/octet-stream'); + xhr.send(file); + } + + save(videoId) { + const formData = new FormData(); + formData.append('action', 'save_youtube_video_id'); + formData.append('post_id', this.postId); + formData.append('field_key', this.field.data('key')); + formData.append('video_id', videoId); + + fetch(ajaxurl, { + method: 'POST', + body: formData, + }) + .then(response => { + const contentType = response.headers.get("content-type"); + if (contentType && contentType.indexOf("application/json") !== -1) { + return response.json(); + } else { + return response.text().then(text => ({ + success: false, + data: { + code: response.status, + message: this.getResponseMessage(text) + } + })); + } + }) + .then(response => { + const message = this.getResponseMessage(response); + if (!response.success) { + throw new Error(message); + } + }) + .catch(error => { + let message = acf._e(this.field.data('type'), 'following_error'); + message += '\n"' + this.getResponseMessage(error) + '"'; + message += '\n' + acf._e(this.field.data('type'), 'recommended_save_post'); + this.thickbox(message); + }); + } + + thickbox(message) { + const uniqueId = 'thickbox_' + Date.now(); + const formattedMessage = message.replace(/\n/g, '
'); + const content = ` + + `; + + document.body.insertAdjacentHTML('beforeend', content); + + //FIXME - https://core.trac.wordpress.org/ticket/27473 + //tb_show(acf._e(this.field.data('type'), 'attention'), '#TB_inline?&width=300&height=100&inlineId=youtube-upload-message'); + tb_show(acf._e(this.field.data('type'), 'attention'), `#TB_inline?inlineId=${uniqueId}`); + + // Set initial dimensions + setTimeout(this.adjustThickboxSize, 0); + + // Add a listener for window resizing + const resizeListener = () => { + this.adjustThickboxSize(); + }; + window.addEventListener('resize', resizeListener); + + // Remove content and listener after ThickBox is closed + const observer = new MutationObserver((mutations) => { + mutations.forEach((mutation) => { + if (mutation.type === 'childList' && mutation.removedNodes.length > 0) { + for (let node of mutation.removedNodes) { + if (node.id === 'TB_window') { + document.getElementById(uniqueId).remove(); + window.removeEventListener('resize', resizeListener); + observer.disconnect(); + break; + } + } + } + }); + }); + + observer.observe(document.body, { + childList: true + }); + } + + adjustThickboxSize() { + const thickboxWindow = document.getElementById('TB_window'); + if (thickboxWindow) { + thickboxWindow.style.width = '300px'; + thickboxWindow.style.height = 'auto'; + thickboxWindow.style.marginLeft = '-150px'; + thickboxWindow.style.left = '50%'; // Center horizontally + + const thickboxContent = document.getElementById('TB_ajaxContent'); + if (thickboxContent) { + thickboxContent.style.width = 'auto'; + thickboxContent.style.height = 'auto'; + } + + // Center vertically + const windowHeight = window.innerHeight; + const thickboxHeight = thickboxWindow.offsetHeight; + thickboxWindow.style.top = Math.max(0, (windowHeight - thickboxHeight) / 2) + 'px'; + } + } + + getResponseMessage(data) { + if (data && data.data && typeof data.data.message !== 'undefined') { + return data.data.message; + } else if (data && typeof data.message !== 'undefined') { + return data.message; + } else { + return data || acf._e(this.field.data('type'), 'technical_problem'); + } + } + } + + if( typeof acf.add_action !== 'undefined' ) { + /** + * Run initialize_field when existing fields of this type load, + * or when new fields are appended via repeaters or similar. + */ + acf.add_action( 'ready_field/type=youtube_uploader', function($field) { + new YTUploader($field); + }); + acf.add_action( 'append_field/type=youtube_uploader', function($field) { + new YTUploader($field); + }); + } +} )( jQuery ); diff --git a/upload-field-to-youtube-for-acf/composer.json b/upload-field-to-youtube-for-acf/composer.json new file mode 100644 index 0000000..a8ad229 --- /dev/null +++ b/upload-field-to-youtube-for-acf/composer.json @@ -0,0 +1,95 @@ +{ + "name": "frugan-dev/upload-field-to-youtube-for-acf", + "description": "Upload Field to YouTube for ACF", + "license": "GPL-3.0-or-later", + "type": "wordpress-plugin", + "require": { + "php": "^8.0", + "google/apiclient": "^2.17" + }, + "require-dev": { + "composer/installers": "^1.0 || ^2.0", + "ergebnis/composer-normalize": "^2.42", + "friendsofphp/php-cs-fixer": "^3.58", + "hoppinger/advanced-custom-fields-wpcli": "dev-master", + "inpsyde/wonolog": "2.x-dev", + "jameelmoses/wordpress-kint-debugger": "^2.0", + "nikic/php-parser": "^5.0", + "php-parallel-lint/php-parallel-lint": "^1.4", + "phpro/grumphp-shim": "^2.0", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^1.11", + "povils/phpmnd": "^3.5", + "rector/rector": "^1.1", + "roave/security-advisories": "dev-latest", + "squizlabs/php_codesniffer": "^3.10", + "szepeviktor/phpstan-wordpress": "^1.3", + "tareq1988/wp-php-cs-fixer": "^1.0", + "wordpress-plugin/acf-repeater": "^2.2", + "wp-coding-standards/wpcs": "^3.1", + "wpackagist-plugin/acf-repeater-flexible-content-collapser": "^1.2", + "wpackagist-plugin/advanced-custom-fields": "^5.9 || ^6.0", + "wpackagist-plugin/classic-editor": "^1.6", + "wpackagist-plugin/debug-bar": "^1.1", + "wpackagist-plugin/plugin-check": "^1.0", + "wpackagist-plugin/query-monitor": "^3.16", + "wpackagist-plugin/rewrite-rules-inspector": "^1.4", + "wpackagist-plugin/wp-cfm": "^1.7", + "wpackagist-plugin/wp-debugging": "^2.11" + }, + "repositories": [ + { + "type": "composer", + "url": "https://wpackagist.org", + "only": [ + "wpackagist-plugin/*" + ] + }, + { + "type": "vcs", + "url": "https://github.com/hoppinger/advanced-custom-fields-wpcli" + }, + { + "type": "vcs", + "url": "https://github.com/jameelmoses/wordpress-kint-debugger" + }, + { + "type": "vcs", + "url": "https://github.com/frugan-dev/acf-repeater" + } + ], + "autoload": { + "psr-4": { + "FruganUFTYFACF\\": "src/" + } + }, + "config": { + "allow-plugins": { + "composer/installers": true, + "dealerdirect/phpcodesniffer-composer-installer": true, + "ergebnis/composer-normalize": true, + "phpro/grumphp-shim": true, + "phpstan/extension-installer": true + }, + "check-platform-reqs": true, + "optimize-autoloader": true, + "platform": { + "php": "8.0" + }, + "sort-packages": true + }, + "extra": { + "google/apiclient-services": [ + "Oauth2", + "YouTube" + ], + "installer-paths": { + "/bitnami/wordpress/wp-content/plugins/{$name}/": [ + "type:wordpress-plugin" + ] + } + }, + "scripts": { + "pre-autoload-dump": "Google\\Task\\Composer::cleanup" + } +} diff --git a/upload-field-to-youtube-for-acf/exclude_from.txt b/upload-field-to-youtube-for-acf/exclude_from.txt new file mode 100755 index 0000000..d720cd9 --- /dev/null +++ b/upload-field-to-youtube-for-acf/exclude_from.txt @@ -0,0 +1 @@ +- Thumbs.db \ No newline at end of file diff --git a/upload-field-to-youtube-for-acf/grumphp.yml.dist b/upload-field-to-youtube-for-acf/grumphp.yml.dist new file mode 100644 index 0000000..0e4cb98 --- /dev/null +++ b/upload-field-to-youtube-for-acf/grumphp.yml.dist @@ -0,0 +1,49 @@ +grumphp: + process_timeout: null + #fixer: + # fix_by_default: true + tasks: + composer: ~ + + composer_normalize: ~ + + #phpcs: + # standard: ['WordPress'] + # ignore_patterns: + # - /^vendor\/(.*)/ + + phpcsfixer: + config: .php-cs-fixer.dist.php + + phplint: + exclude: ['vendor'] + + phpmnd: + exclude_path: ['vendor'] + + phpparser: + ignore_patterns: ['vendor'] + visitors: + declare_strict_types: ~ + forbidden_function_calls: + blacklist: + - 'var_dump' + - 'print_r' + #no_exit_statements: ~ + + phpstan: + configuration: ./phpstan.neon.dist + memory_limit: '-1' + + #https://www.php.net/supported-versions.php + phpversion: + project: '8.0' + + #psalm: + # config: psalm.xml.dist + # show_info: true + + rector: ~ + + securitychecker_roave: + run_always: true diff --git a/upload-field-to-youtube-for-acf/include_from.txt b/upload-field-to-youtube-for-acf/include_from.txt new file mode 100644 index 0000000..ee1d21f --- /dev/null +++ b/upload-field-to-youtube-for-acf/include_from.txt @@ -0,0 +1,12 @@ ++ asset/ ++ asset/** ++ lang/ ++ lang/** ++ src/ ++ src/** ++ vendor/ +- vendor/bin/ ++ vendor/** ++ readme.txt ++ upload-field-to-youtube-for-acf.php +- * diff --git a/upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf-it_IT.mo b/upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf-it_IT.mo new file mode 100644 index 0000000000000000000000000000000000000000..eab1e235b511bed0a228f7df2eeb036a82e7b9b9 GIT binary patch literal 5632 zcmai2ON<;x87>DC!X^+%cqM^QUL2e_+p|0CwK44&SnnfV;m5|icI?xtw!3Dg;-0Ri zs(K#=a^QqO0))hghr|gGCo5byA!I4s2oe&4Ai)8`odbzLAo2ZG)jjL=*lxM^>#DA< z|MmTU{o}tpcJO-)*D>55$Nh@~jJ*gv_b&XwH8{xF$AAj>2=HqWzYRQ!@ehEA6$`owpl{7g}qT`+`E<`!g!=Ws5 zgbTj#%g8rgxy@ak6)L+7xVe9ZzPgBm2=wOr1vf9Apl-`0e+X9wwC$mARGEwl#XqYsdf}v7a$sLF! z`T_}5fLCDj`T!~EnMYCcDPgV76yD~1Tfw8=vQaWN;ou_6bX_{Ot{kksT$1l7)Q!_3 zsX`2mv=ta5`9LCy#*SNm8#Bl37tJ`9pIoT!;x2=Y@N6lmXmQSOrW>^TrPz+%|@7- z%kZ=lXFP_fjZ*6>PPfl-bvvd{+X21A>9{d)!vaFvM>%@j@sGke6Bqc$u)sg=jBGrE zysCs7q`cF??1ItT@MaR3c7J-^@kz3>nDWmYn>*1ZPd58CydVPXnO?@pb6**qO7H*1 z3z?l8nXx8?$p))1B$Ar*Jfd zj?j099R}K3I=6i}yMcU>qp46Onof^;!W+VgL;S2zT=sg>xf)r+iz7IakbxSV+z{T_ z+a8WSx@ZKiYOQ#NBOG_rz1X@bzfE_DCbLE|25GT9bk4V-N5pVXUnqGFy}@2N6tPDP z7N8>u-;-`tg_cK*eSw4HuG*y3Pz(i$XxG4duGXQ_PoWjI3SEGJ^Kz9koNBRWRDxQS zT=vkyI@BufkflOFbwLsECk1WXoDsRM$c-{A@v2fI=}*hpO2*KLAy#hH8g6geKE%)9 zEaP?AOf6B{B{@2rs5<&Vr{ST-Ewq`!aXe}-74?_s7K<(NbE{*Nu?8Q2C#sKH=zTs~ z=MQvhD$)Dr=r?OIKK?{qL%*qMSU^nZL4ET{P9|rL;zBK`pXIsVtQ2VA z7L|p}GUm@nIMy_->M#W0)=&8s0*#*oA?JJ_iXSYpUn9CQy>kr&$2Qb=rf5v{6iNZ+ zwxFrH^-GSV%2kKGRQuWxXj#GmkOgx4Zd8-qMEclvHahLeQBAF=E;L&KIgu0O+t#IU zKp+v>jCloJ(V+(h2B#Sc3Fhwhy^ksJzG3`$F)HR2elrdgs8Ae1Mz(Pu^X*;O9`hy$ z^nGiSilObL#ud5L?<;NYozEh!@mw4w^!*xIc%MQS$}|W*YChE~C literal 0 HcmV?d00001 diff --git a/upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf-it_IT.po b/upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf-it_IT.po new file mode 100644 index 0000000..472adc4 --- /dev/null +++ b/upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf-it_IT.po @@ -0,0 +1,297 @@ +msgid "" +msgstr "" +"Project-Id-Version: upload-field-to-youtube-for-acf\n" +"Report-Msgid-Bugs-To: https://wordpress.org/tags/_s\n" +"POT-Creation-Date: 2024-11-06 15:05+0100\n" +"PO-Revision-Date: 2024-11-06 15:10+0100\n" +"Last-Translator: \n" +"Language-Team: Italian\n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.5\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_ex;_x;_ex;_n:1,2;_n:1,2,4c;_nx:1,2;_nx:1,2,4c;_n_noop:1,2;_n_noop:1,2,4c;_nx_noop:1,2;_nx_noop:1,2,4c;esc_html__;esc_html_e;esc_html_x;esc_attr__;esc_attr_e;esc_attr_x\n" +"X-Poedit-Basepath: ..\n" +"X-Crowdin-Project: upload-field-to-youtube-for-acf\n" +"X-Crowdin-Project-ID: 734615\n" +"X-Crowdin-Language: it\n" +"X-Crowdin-File: upload-field-to-youtube-for-acf.pot\n" +"X-Crowdin-File-ID: 24\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SearchPathExcluded-1: *.rst\n" + +#: src/Bootstrap.php:96 src/Field.php:69 +msgid "YouTube Uploader" +msgstr "" + +#: src/Bootstrap.php:98 +#, php-format +msgid "%1$s plugin is required." +msgstr "È richiesto il plugin %1$s ." + +#: src/Bootstrap.php:98 +msgid "Advanced Custom Fields" +msgstr "" + +#: src/Field.php:62 +msgid "Upload Field to YouTube for ACF" +msgstr "" + +#: src/Field.php:79 +msgid "Upload Field to YouTube for ACF is a WordPress plugin that allows you to upload videos directly to YouTube via API from the WordPress admin area and/or select existing videos on your YouTube channel based on playlists." +msgstr "Upload Field to YouTube for ACF è un plugin di WordPress che consente di caricare video direttamente su YouTube tramite API dall'area di amministrazione di WordPress e/o di selezionare video esistenti sul tuo canale YouTube in base alle playlist." + +#: src/Field.php:117 +msgid "Before uploading your video, make sure you:" +msgstr "Prima di caricare il tuo video, assicurati di:" + +#: src/Field.php:119 src/Field.php:121 +#, php-format +msgid "Enter a \"%1$s\"" +msgstr "Inserire un \"%1$s\"" + +#: src/Field.php:119 src/Field.php:568 +msgid "Title" +msgstr "Titolo" + +#: src/Field.php:121 +msgid "Description" +msgstr "Descrizione" + +#: src/Field.php:123 +#, php-format +msgid "Select a \"%1$s\"" +msgstr "Selezionare un \"%1$s\"" + +#: src/Field.php:123 +msgid "Video file" +msgstr "File video" + +#: src/Field.php:124 +msgid "Preparing to upload your file" +msgstr "Preparazione al caricamento del file" + +#: src/Field.php:125 +msgid "Loading" +msgstr "" + +#: src/Field.php:126 +msgid "Wait please" +msgstr "Attendere prego" + +#: src/Field.php:127 +msgid "Video uploaded successfully." +msgstr "Video caricato con successo." + +#: src/Field.php:128 +msgid "Error while uploading." +msgstr "Errore nel caricamento." + +#: src/Field.php:129 +msgid "Network error while uploading." +msgstr "Errore di rete durante il caricamento." + +#: src/Field.php:130 +msgid "The following error occurred:" +msgstr "Si è verificato l'errore seguente:" + +#: src/Field.php:131 +msgid "It is recommended to save the post by clicking the \"Publish\" button." +msgstr "Si consiglia di salvare il post cliccando sul pulsante \"Pubblica\"." + +#: src/Field.php:132 +msgid "Attention" +msgstr "Attenzione" + +#: src/Field.php:133 +msgid "There was a technical problem, please try again later." +msgstr "Si è verificato un problema tecnico, riprova più tardi." + +#: src/Field.php:134 src/Field.php:451 +msgid "select" +msgstr "seleziona" + +#: src/Field.php:198 +msgid "Successfully logged out from YouTube." +msgstr "Disconnesso con successo da YouTube." + +#: src/Field.php:218 src/Field.php:690 +msgid "Authorize App" +msgstr "Autorizza l'applicazione" + +#: src/Field.php:255 +msgid "Category ID" +msgstr "ID Categoria" + +#: src/Field.php:260 src/Field.php:278 src/Field.php:294 src/Field.php:315 +#: src/Field.php:331 src/Field.php:347 src/Field.php:363 src/Field.php:379 +#, php-format +msgid "Default: %1$s" +msgstr "Predefinito: %1$s" + +#: src/Field.php:273 +msgid "Tags" +msgstr "" + +#: src/Field.php:289 +msgid "Privacy status" +msgstr "Stato della privacy" + +#: src/Field.php:300 +msgid "Unlisted" +msgstr "" + +#: src/Field.php:301 +msgid "Private" +msgstr "" + +#: src/Field.php:302 +msgid "Public" +msgstr "" + +#: src/Field.php:310 +msgid "Made for kids" +msgstr "Realizzato per i bambini" + +#: src/Field.php:315 src/Field.php:331 src/Field.php:347 src/Field.php:363 +#: src/Field.php:379 +msgid "Yes" +msgstr "Si" + +#: src/Field.php:315 src/Field.php:331 src/Field.php:347 src/Field.php:363 +#: src/Field.php:379 +msgid "No" +msgstr "" + +#: src/Field.php:326 +msgid "Allow upload" +msgstr "Consenti upload" + +#: src/Field.php:342 +msgid "Allow select" +msgstr "Consenti selezione" + +#: src/Field.php:358 +msgid "Update YouTube video on post update" +msgstr "Aggiorna il video di YouTube dopo l'aggiornamento del post" + +#: src/Field.php:374 +msgid "Delete YouTube video on post delete" +msgstr "Elimina il video di YouTube dopo l'eliminazione del post" + +#: src/Field.php:416 +msgid "Upload via API" +msgstr "" + +#: src/Field.php:424 +msgid "Select from channel" +msgstr "Seleziona dal canale" + +#: src/Field.php:435 +msgid "Upload" +msgstr "" + +#: src/Field.php:448 +msgid "Playlist" +msgstr "" + +#: src/Field.php:463 +msgid "Video" +msgstr "" + +#: src/Field.php:468 +msgid "No playlists available" +msgstr "Nessuna playlist disponibile" + +#: src/Field.php:481 +msgid "You are not logged in" +msgstr "Non hai effettuato l'accesso" + +#: src/Field.php:549 src/Field.php:568 src/Field.php:914 src/Field.php:920 +#: src/Field.php:985 src/Field.php:991 src/Field.php:1002 src/Field.php:1024 +#: src/Field.php:1037 +#, php-format +msgid "Empty field \"%1$s\"" +msgstr "Campo vuoto \"%1$s\"" + +#: src/Field.php:584 src/Field.php:962 +#, php-format +msgid "Video \"%1$s\" retrieved successfully" +msgstr "Video \"%1$s\" recuperato con successo" + +#: src/Field.php:587 +msgid "This video is not associated with your authorized YouTube account" +msgstr "Questo video non è associato al tuo account YouTube autorizzato" + +#: src/Field.php:640 +#, php-format +msgid "Video \"%1$s\" updated successfully" +msgstr "Video \"%1$s\" aggiornato con successo" + +#: src/Field.php:668 +#, php-format +msgid "Video \"%1$s\" deleted successfully" +msgstr "Video \"%1$s\" cancellato con successo" + +#: src/Field.php:702 +msgid "Logout from YouTube" +msgstr "Logout da YouTube" + +#: src/Field.php:794 +msgid "Missing or wrong OAuth credentials." +msgstr "Credenziali OAuth mancanti o errate." + +#: src/Field.php:808 +msgid "App not authorized, contact your system administrator." +msgstr "App non autorizzata, contattare l'amministratore di sistema." + +#: src/Field.php:825 +msgid "App authorized! You can now upload videos to YouTube." +msgstr "App autorizzata! Ora puoi caricare video su YouTube." + +#: src/Field.php:837 +msgid "Authorize the app to upload videos to YouTube:" +msgstr "Autorizza l'app a caricare video su YouTube:" + +#: src/Field.php:848 +#, php-format +msgid "App authorized! You are logged in as: %1$s" +msgstr "App autorizzata! Hai effettuato l'accesso come: %1$s" + +#: src/Field.php:868 +msgid "Playlists retrieved successfully" +msgstr "Playlist recuperata con successo" + +#: src/Field.php:927 src/Field.php:1031 +#, php-format +msgid "Unable to retrieve field \"%1$s\"" +msgstr "Impossibile recuperare il campo \"%1$s\"" + +#: src/Field.php:966 +#, php-format +msgid "Unable to retrieve \"%1$s\" from response headers" +msgstr "Impossibile recuperare \"%1$s\" dalle intestazioni della risposta" + +#: src/Field.php:996 +#, php-format +msgid "Insufficient permissions to save video \"%1$s\"" +msgstr "Autorizzazioni insufficienti per salvare il video \"%1$s\"" + +#: src/Field.php:1011 +#, php-format +msgid "Unable to save video \"%1$s\" to field \"%2$s\" in post ID \"%3$d\"" +msgstr "Impossibile salvare il video \"%1$s\" nel campo \"%2$s\" del post ID \"%3$d\"." + +#: src/Field.php:1051 +#, php-format +msgid "Videos retrieved successfully by playlist ID \"%1$s\"" +msgstr "Video recuperati con successo dall'ID playlist \"%1$s\"" + +#: src/Field.php:1083 +#, php-format +msgid "Unable to retrieve videos by playlist ID \"%1$s\"" +msgstr "Impossibile recuperare i video tramite l'ID playlist \"%1$s\"" diff --git a/upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf.pot b/upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf.pot new file mode 100644 index 0000000..3f2b114 --- /dev/null +++ b/upload-field-to-youtube-for-acf/lang/upload-field-to-youtube-for-acf.pot @@ -0,0 +1,291 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: upload-field-to-youtube-for-acf\n" +"Report-Msgid-Bugs-To: https://wordpress.org/tags/_s\n" +"POT-Creation-Date: 2024-11-06 15:05+0100\n" +"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.5\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-KeywordsList: __;_e;_ex;_x;_ex;_n:1,2;_n:1,2,4c;_nx:1,2;_nx:1,2,4c;_n_noop:1,2;_n_noop:1,2,4c;_nx_noop:1,2;_nx_noop:1,2,4c;esc_html__;esc_html_e;esc_html_x;esc_attr__;esc_attr_e;esc_attr_x\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SearchPathExcluded-1: *.rst\n" + +#: src/Bootstrap.php:96 src/Field.php:69 +msgid "YouTube Uploader" +msgstr "" + +#: src/Bootstrap.php:98 +#, php-format +msgid "%1$s plugin is required." +msgstr "" + +#: src/Bootstrap.php:98 +msgid "Advanced Custom Fields" +msgstr "" + +#: src/Field.php:62 +msgid "Upload Field to YouTube for ACF" +msgstr "" + +#: src/Field.php:79 +msgid "Upload Field to YouTube for ACF is a WordPress plugin that allows you to upload videos directly to YouTube via API from the WordPress admin area and/or select existing videos on your YouTube channel based on playlists." +msgstr "" + +#: src/Field.php:117 +msgid "Before uploading your video, make sure you:" +msgstr "" + +#: src/Field.php:119 src/Field.php:121 +#, php-format +msgid "Enter a \"%1$s\"" +msgstr "" + +#: src/Field.php:119 src/Field.php:568 +msgid "Title" +msgstr "" + +#: src/Field.php:121 +msgid "Description" +msgstr "" + +#: src/Field.php:123 +#, php-format +msgid "Select a \"%1$s\"" +msgstr "" + +#: src/Field.php:123 +msgid "Video file" +msgstr "" + +#: src/Field.php:124 +msgid "Preparing to upload your file" +msgstr "" + +#: src/Field.php:125 +msgid "Loading" +msgstr "" + +#: src/Field.php:126 +msgid "Wait please" +msgstr "" + +#: src/Field.php:127 +msgid "Video uploaded successfully." +msgstr "" + +#: src/Field.php:128 +msgid "Error while uploading." +msgstr "" + +#: src/Field.php:129 +msgid "Network error while uploading." +msgstr "" + +#: src/Field.php:130 +msgid "The following error occurred:" +msgstr "" + +#: src/Field.php:131 +msgid "It is recommended to save the post by clicking the \"Publish\" button." +msgstr "" + +#: src/Field.php:132 +msgid "Attention" +msgstr "" + +#: src/Field.php:133 +msgid "There was a technical problem, please try again later." +msgstr "" + +#: src/Field.php:134 src/Field.php:451 +msgid "select" +msgstr "" + +#: src/Field.php:198 +msgid "Successfully logged out from YouTube." +msgstr "" + +#: src/Field.php:218 src/Field.php:690 +msgid "Authorize App" +msgstr "" + +#: src/Field.php:255 +msgid "Category ID" +msgstr "" + +#: src/Field.php:260 src/Field.php:278 src/Field.php:294 src/Field.php:315 +#: src/Field.php:331 src/Field.php:347 src/Field.php:363 src/Field.php:379 +#, php-format +msgid "Default: %1$s" +msgstr "" + +#: src/Field.php:273 +msgid "Tags" +msgstr "" + +#: src/Field.php:289 +msgid "Privacy status" +msgstr "" + +#: src/Field.php:300 +msgid "Unlisted" +msgstr "" + +#: src/Field.php:301 +msgid "Private" +msgstr "" + +#: src/Field.php:302 +msgid "Public" +msgstr "" + +#: src/Field.php:310 +msgid "Made for kids" +msgstr "" + +#: src/Field.php:315 src/Field.php:331 src/Field.php:347 src/Field.php:363 +#: src/Field.php:379 +msgid "Yes" +msgstr "" + +#: src/Field.php:315 src/Field.php:331 src/Field.php:347 src/Field.php:363 +#: src/Field.php:379 +msgid "No" +msgstr "" + +#: src/Field.php:326 +msgid "Allow upload" +msgstr "" + +#: src/Field.php:342 +msgid "Allow select" +msgstr "" + +#: src/Field.php:358 +msgid "Update YouTube video on post update" +msgstr "" + +#: src/Field.php:374 +msgid "Delete YouTube video on post delete" +msgstr "" + +#: src/Field.php:416 +msgid "Upload via API" +msgstr "" + +#: src/Field.php:424 +msgid "Select from channel" +msgstr "" + +#: src/Field.php:435 +msgid "Upload" +msgstr "" + +#: src/Field.php:448 +msgid "Playlist" +msgstr "" + +#: src/Field.php:463 +msgid "Video" +msgstr "" + +#: src/Field.php:468 +msgid "No playlists available" +msgstr "" + +#: src/Field.php:481 +msgid "You are not logged in" +msgstr "" + +#: src/Field.php:549 src/Field.php:568 src/Field.php:914 src/Field.php:920 +#: src/Field.php:985 src/Field.php:991 src/Field.php:1002 src/Field.php:1024 +#: src/Field.php:1037 +#, php-format +msgid "Empty field \"%1$s\"" +msgstr "" + +#: src/Field.php:584 src/Field.php:962 +#, php-format +msgid "Video \"%1$s\" retrieved successfully" +msgstr "" + +#: src/Field.php:587 +msgid "This video is not associated with your authorized YouTube account" +msgstr "" + +#: src/Field.php:640 +#, php-format +msgid "Video \"%1$s\" updated successfully" +msgstr "" + +#: src/Field.php:668 +#, php-format +msgid "Video \"%1$s\" deleted successfully" +msgstr "" + +#: src/Field.php:702 +msgid "Logout from YouTube" +msgstr "" + +#: src/Field.php:794 +msgid "Missing or wrong OAuth credentials." +msgstr "" + +#: src/Field.php:808 +msgid "App not authorized, contact your system administrator." +msgstr "" + +#: src/Field.php:825 +msgid "App authorized! You can now upload videos to YouTube." +msgstr "" + +#: src/Field.php:837 +msgid "Authorize the app to upload videos to YouTube:" +msgstr "" + +#: src/Field.php:848 +#, php-format +msgid "App authorized! You are logged in as: %1$s" +msgstr "" + +#: src/Field.php:868 +msgid "Playlists retrieved successfully" +msgstr "" + +#: src/Field.php:927 src/Field.php:1031 +#, php-format +msgid "Unable to retrieve field \"%1$s\"" +msgstr "" + +#: src/Field.php:966 +#, php-format +msgid "Unable to retrieve \"%1$s\" from response headers" +msgstr "" + +#: src/Field.php:996 +#, php-format +msgid "Insufficient permissions to save video \"%1$s\"" +msgstr "" + +#: src/Field.php:1011 +#, php-format +msgid "Unable to save video \"%1$s\" to field \"%2$s\" in post ID \"%3$d\"" +msgstr "" + +#: src/Field.php:1051 +#, php-format +msgid "Videos retrieved successfully by playlist ID \"%1$s\"" +msgstr "" + +#: src/Field.php:1083 +#, php-format +msgid "Unable to retrieve videos by playlist ID \"%1$s\"" +msgstr "" diff --git a/upload-field-to-youtube-for-acf/phpstan.neon.dist b/upload-field-to-youtube-for-acf/phpstan.neon.dist new file mode 100755 index 0000000..0bccbb7 --- /dev/null +++ b/upload-field-to-youtube-for-acf/phpstan.neon.dist @@ -0,0 +1,10 @@ +parameters: + level: 5 + bootstrapFiles: + - tests/bootstrap.php + scanDirectories: + - /bitnami/wordpress/wp-content/plugins/advanced-custom-fields/includes + paths: + - . + excludePaths: + - ./patch/ diff --git a/upload-field-to-youtube-for-acf/psalm.xml.dist b/upload-field-to-youtube-for-acf/psalm.xml.dist new file mode 100755 index 0000000..cd1a503 --- /dev/null +++ b/upload-field-to-youtube-for-acf/psalm.xml.dist @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/upload-field-to-youtube-for-acf/readme.txt b/upload-field-to-youtube-for-acf/readme.txt new file mode 100644 index 0000000..5a960e8 --- /dev/null +++ b/upload-field-to-youtube-for-acf/readme.txt @@ -0,0 +1,34 @@ +=== Upload Field to YouTube for ACF === +Contributors: Frugan +Tags: acf, fields, repeater, upload, youtube +Requires at least: 5.6.0 +Tested up to: 6.6.1 +Stable tag: 0.1.0 +Requires PHP: 8.0 +License: GPLv3 or later +License URI: http://www.gnu.org/licenses/gpl-3.0.html +Donate link: https://buymeacoff.ee/frugan + +Upload Field to YouTube for ACF + +== Description == + +__Upload Field to YouTube for ACF__ is a WordPress plugin that allows you to upload videos directly to YouTube via API from the WordPress admin area and/or select existing videos on your YouTube channel based on playlists. It is particularly useful for managing "unlisted" videos that may be associated with Custom Post Types (CPT). + +To use this plugin, you need to configure Google oAuth credentials so the plugin can authenticate with the user's YouTube channel. + += Requirements = + +@see https://github.com/frugan-dev/upload-field-to-youtube-for-acf?tab=readme-ov-file#requirements + +== Installation == + +@see https://github.com/frugan-dev/upload-field-to-youtube-for-acf?tab=readme-ov-file#installation + +== Changelog == + +@see https://github.com/frugan-dev/upload-field-to-youtube-for-acf/blob/master/CHANGELOG.md + += Links = +* [Github](https://github.com/frugan-dev/upload-field-to-youtube-for-acf) +* [Support](https://github.com/frugan-dev/upload-field-to-youtube-for-acf/issues) diff --git a/upload-field-to-youtube-for-acf/rector.php b/upload-field-to-youtube-for-acf/rector.php new file mode 100644 index 0000000..c66b24c --- /dev/null +++ b/upload-field-to-youtube-for-acf/rector.php @@ -0,0 +1,41 @@ + + * + * This source file is subject to the GNU GPLv3 or later license that is bundled + * with this source code in the file LICENSE. + */ + +use Rector\Config\RectorConfig; +use Rector\Set\ValueObject\LevelSetList; +use Rector\Set\ValueObject\SetList; + +// https://getrector.com/blog/5-common-mistakes-in-rector-config-and-how-to-avoid-them +return RectorConfig::configure() + ->withPaths( + [ + __DIR__.'/src', + __DIR__.'/tests', + ] + ) + ->withRootFiles() + ->withSets( + [ + SetList::DEAD_CODE, + // SetList::CODE_QUALITY, + SetList::CODING_STYLE, + SetList::TYPE_DECLARATION, + SetList::PRIVATIZATION, + SetList::NAMING, + SetList::INSTANCEOF, + SetList::EARLY_RETURN, + // SetList::STRICT_BOOLEANS, + LevelSetList::UP_TO_PHP_80, + ] + ) +; diff --git a/upload-field-to-youtube-for-acf/src/Bootstrap.php b/upload-field-to-youtube-for-acf/src/Bootstrap.php new file mode 100644 index 0000000..61a698e --- /dev/null +++ b/upload-field-to-youtube-for-acf/src/Bootstrap.php @@ -0,0 +1,120 @@ + + * + * This source file is subject to the GNU GPLv3 or later license that is bundled + * with this source code in the file LICENSE. + */ + +namespace FruganUFTYFACF; + +if (!\defined('ABSPATH')) { + exit; +} + +class Bootstrap +{ + private static ?self $instance = null; + + protected function __construct() + { + add_action('muplugins_loaded', [$this, 'muplugins_loaded']); + add_action('plugins_loaded', [$this, 'plugins_loaded']); + add_action('init', [$this, 'init']); + add_action('admin_init', [$this, 'admin_init'], 999); + add_action('deactivated_plugin', [$this, 'deactivated_plugin']); + + if (!$this->is_mu_plugin()) { + delete_option(FRUGAN_UFTYFACF_NAME.'__activated'); + + register_activation_hook(FRUGAN_UFTYFACF_BASENAME, static fn (): array => [Field::class, 'activate']); + register_deactivation_hook(FRUGAN_UFTYFACF_BASENAME, static fn (): array => [Field::class, 'deactivate']); + } + } + + public static function get_instance(): self + { + if (!self::$instance instanceof self) { + // @phpstan-ignore-next-line + self::$instance = new static(); + } + + return self::$instance; + } + + public function muplugins_loaded(): void + { + if ($this->is_mu_plugin()) { + load_muplugin_textdomain( + FRUGAN_UFTYFACF_NAME, + trailingslashit(FRUGAN_UFTYFACF_NAME).'lang' + ); + } + } + + public function plugins_loaded(): void + { + if (!$this->is_mu_plugin()) { + load_plugin_textdomain( + FRUGAN_UFTYFACF_NAME, + false, + trailingslashit(FRUGAN_UFTYFACF_NAME).'lang' + ); + } + } + + public function init(): void + { + if (!class_exists('acf') || !\function_exists('acf_register_field_type')) { + return; + } + + if ($this->is_mu_plugin() && !get_option(FRUGAN_UFTYFACF_NAME.'__activated')) { + Field::activate(); + update_option(FRUGAN_UFTYFACF_NAME.'__activated', true); + } + + acf_register_field_type(Field::class); + } + + public function admin_init(): void + { + if (!class_exists('acf')) { + $this->deactivate(); + + if (isset($_GET['activate'])) { + unset($_GET['activate']); + } + + add_action('admin_notices', static function (): void { + echo '
'; + echo '

'.esc_html__('YouTube Uploader', 'upload-field-to-youtube-for-acf').'

'; + // translators: %s: plugin name + echo '

'.esc_html(\sprintf(__('%1$s plugin is required.', 'upload-field-to-youtube-for-acf'), __('Advanced Custom Fields', 'upload-field-to-youtube-for-acf'))).'

'; + echo '
'; + }); + } + } + + public function deactivated_plugin(string $plugin): void + { + if (\in_array($plugin, ['advanced-custom-fields/acf.php', 'advanced-custom-fields-pro/acf.php'], true)) { + $this->deactivate(); + } + } + + private function deactivate(): void + { + deactivate_plugins(FRUGAN_UFTYFACF_BASENAME); + } + + private function is_mu_plugin(): bool + { + return \defined('WPMU_PLUGIN_DIR') && str_contains(FRUGAN_UFTYFACF_PATH, WPMU_PLUGIN_DIR); + } +} diff --git a/upload-field-to-youtube-for-acf/src/Field.php b/upload-field-to-youtube-for-acf/src/Field.php new file mode 100644 index 0000000..8226de7 --- /dev/null +++ b/upload-field-to-youtube-for-acf/src/Field.php @@ -0,0 +1,1130 @@ + + * + * This source file is subject to the GNU GPLv3 or later license that is bundled + * with this source code in the file LICENSE. + */ + +namespace FruganUFTYFACF; + +use Google\Client; +use Google\Service\Oauth2; +use Google\Service\YouTube; +use Inpsyde\Wonolog\Configurator; + +if (!\defined('ABSPATH')) { + exit; +} + +/** + * Class Field. + * + * @property string $title + */ +class Field extends \acf_field +{ + /** + * Controls field type visibilty in REST requests. + * + * @var bool + */ + public $show_in_rest = true; + + /** + * Environment values relating to the theme or plugin. + * + * @var array plugin or theme context such as 'url' and 'version' + */ + private array $env; + + private ?Client $client = null; + + private null|array|bool $access_token = null; + + /** + * Constructor. + */ + public function __construct() + { + /* + * Field type reference used in PHP and JS code. + * + * No spaces. Underscores allowed. + */ + $this->name = 'youtube_uploader'; + + $this->title = __('Upload Field to YouTube for ACF', 'upload-field-to-youtube-for-acf'); + + /* + * Field type label. + * + * For public-facing UI. May contain spaces. + */ + $this->label = __('YouTube Uploader', 'upload-field-to-youtube-for-acf'); + + // The category the field appears within in the field type picker. + $this->category = 'content'; // basic | content | choice | relational | jquery | layout | CUSTOM GROUP NAME + + /* + * Field type Description. + * + * For field descriptions. May contain spaces. + */ + $this->description = __('Upload Field to YouTube for ACF is a WordPress plugin that allows you to upload videos directly to YouTube via API from the WordPress admin area and/or select existing videos on your YouTube channel based on playlists.', 'upload-field-to-youtube-for-acf'); + + /* + * Field type Doc URL. + * + * For linking to a documentation page. Displayed in the field picker modal. + */ + $this->doc_url = 'https://github.com/frugan-dev/upload-field-to-youtube-for-acf'; + + /* + * Field type Tutorial URL. + * + * For linking to a tutorial resource. Displayed in the field picker modal. + */ + $this->tutorial_url = 'https://github.com/frugan-dev/upload-field-to-youtube-for-acf'; + + // Defaults for your custom user-facing settings for this field type. + $this->defaults = [ + 'category_id' => 22, // People & Blogs + 'tags' => !empty($_SERVER['HTTP_HOST']) ? str_replace('www.', '', wp_unslash($_SERVER['HTTP_HOST'])) : '', + 'privacy_status' => 'unlisted', + 'made_for_kids' => false, + 'allow_upload' => true, + 'allow_select' => true, + 'api_update_on_post_update' => true, + 'api_delete_on_post_delete' => false, + ]; + + /* + * Strings used in JavaScript code. + * + * Allows JS strings to be translated in PHP and loaded in JS via: + * + * ```js + * const errorMessage = acf._e("youtube_uploader", "error"); + * ``` + */ + $this->l10n = [ + 'before_uploading' => __('Before uploading your video, make sure you:', 'upload-field-to-youtube-for-acf'), + // translators: %s: Title + 'enter_title' => \sprintf(__('Enter a "%1$s"', 'upload-field-to-youtube-for-acf'), __('Title', 'upload-field-to-youtube-for-acf')), + // translators: %s: Description + 'enter_description' => \sprintf(__('Enter a "%1$s"', 'upload-field-to-youtube-for-acf'), __('Description', 'upload-field-to-youtube-for-acf')), + // translators: %s: Video file + 'select_video_file' => \sprintf(__('Select a "%1$s"', 'upload-field-to-youtube-for-acf'), __('Video file', 'upload-field-to-youtube-for-acf')), + 'preparing_upload' => __('Preparing to upload your file', 'upload-field-to-youtube-for-acf'), + 'loading' => __('Loading', 'upload-field-to-youtube-for-acf'), + 'wait_please' => __('Wait please', 'upload-field-to-youtube-for-acf'), + 'video_uploaded_successfully' => __('Video uploaded successfully.', 'upload-field-to-youtube-for-acf'), + 'error_while_uploading' => __('Error while uploading.', 'upload-field-to-youtube-for-acf'), + 'network_error_while_uploading' => __('Network error while uploading.', 'upload-field-to-youtube-for-acf'), + 'following_error' => __('The following error occurred:', 'upload-field-to-youtube-for-acf'), + 'recommended_save_post' => __('It is recommended to save the post by clicking the "Publish" button.', 'upload-field-to-youtube-for-acf'), + 'attention' => __('Attention', 'upload-field-to-youtube-for-acf'), + 'technical_problem' => __('There was a technical problem, please try again later.', 'upload-field-to-youtube-for-acf'), + 'select' => __('select', 'upload-field-to-youtube-for-acf'), + ]; + + $this->env = [ + 'version' => FRUGAN_UFTYFACF_VERSION, + 'url' => FRUGAN_UFTYFACF_URL, + 'path' => FRUGAN_UFTYFACF_PATH, + 'cache_busting' => \defined('FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED') && !empty(FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED) && !is_numeric(FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED) && filter_var(FRUGAN_UFTYFACF_CACHE_BUSTING_ENABLED, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) ? true : false, + ]; + + /* + * Field type preview image. + * + * A preview image for the field type in the picker modal. + */ + // $this->preview_image = $this->env['url'] . '/asset/img/preview-custom.png'; + + parent::__construct(); + + add_action('admin_menu', [$this, 'admin_menu']); + add_action('admin_init', [$this, 'admin_init']); + add_action('admin_notices', [$this, 'admin_notices']); + add_action('before_delete_post', [$this, 'before_delete_post']); + add_action('wp_ajax_get_youtube_upload_url', [$this, 'wp_ajax_get_youtube_upload_url']); + add_action('wp_ajax_save_youtube_video_id', [$this, 'wp_ajax_save_youtube_video_id']); + add_action('wp_ajax_get_videos_by_playlist', [$this, 'wp_ajax_get_videos_by_playlist']); + + add_action(FRUGAN_UFTYFACF_NAME.'__check_oauth_token', [$this, 'check_oauth_token']); + } + + public function admin_menu(): void + { + if (current_user_can('manage_options')) { + add_options_page( + $this->label, // Page title + $this->label, // Menu title + 'manage_options', // Capability + $this->name, // Menu slug + [$this, 'settings_page'], // Callback function + ); + } elseif (current_user_can('manage_'.$this->name)) { + add_menu_page( + $this->label, // Page title + $this->label, // Menu title + 'manage_'.$this->name, // Capability + $this->name, // Menu slug + [$this, 'settings_page'], // Callback function + 'dashicons-video-alt3' // Icon (optional) + ); + } + } + + public function admin_init(): void + { + $role = get_role('administrator'); + if ($role) { + $role->add_cap('manage_'.$this->name); + } + + if (isset($_POST['action']) && 'logout' === $_POST['action']) { + delete_option(FRUGAN_UFTYFACF_NAME.'__access_token'); + + add_action('admin_notices', static function (): void { + echo '
'; + echo '

'.esc_html__('Successfully logged out from YouTube.', 'upload-field-to-youtube-for-acf').'

'; + echo '
'; + }); + } + } + + public function admin_notices(): void + { + if (isset($_GET['page']) && $this->name === $_GET['page']) { + return; + } + + $oauth = $this->handle_oauth(); + $status = $oauth['status'] ?? 'error'; + + switch ($status) { + case 'authorize': + echo '
'; + + break; + + case 'success': + echo '
'; + echo '

'.esc_html($this->label).'

'; + echo '

'.esc_html($oauth['message']).'

'; + echo '
'; + + break; + + case 'error': + echo '
'; + echo '

'.esc_html($this->label).'

'; + echo '

'.esc_html($oauth['message']).'

'; + echo '
'; + + break; + } + } + + /** + * Settings to display when users configure a field of this type. + * + * These settings appear on the ACF “Edit Field Group” admin page when + * setting up the field. + * + * @param array $field + */ + public function render_field_settings($field): void + { + // Repeat for each setting you wish to display for this field type. + acf_render_field_setting( + $field, + [ + 'label' => __('Category ID', 'upload-field-to-youtube-for-acf'), + 'instructions' => implode( + '
'.PHP_EOL, + [ + // translators: %s: category_id + \sprintf(__('Default: %1$s', 'upload-field-to-youtube-for-acf'), ''.$this->defaults['category_id'].''), + ] + ), + 'type' => 'number', + 'name' => 'category_id', + 'min' => 0, + 'step' => 1, + ] + ); + + acf_render_field_setting( + $field, + [ + 'label' => __('Tags', 'upload-field-to-youtube-for-acf'), + 'instructions' => implode( + '
'.PHP_EOL, + [ + // translators: %s: tags + \sprintf(__('Default: %1$s', 'upload-field-to-youtube-for-acf'), ''.$this->defaults['tags'].''), + ] + ), + 'type' => 'text', + 'name' => 'tags', + ] + ); + + acf_render_field_setting( + $field, + [ + 'label' => __('Privacy status', 'upload-field-to-youtube-for-acf'), + 'instructions' => implode( + '
'.PHP_EOL, + [ + // translators: %s: privacy_status + \sprintf(__('Default: %1$s', 'upload-field-to-youtube-for-acf'), ''.$this->defaults['privacy_status'].''), + ] + ), + 'type' => 'select', + 'name' => 'privacy_status', + 'choices' => [ + 'unlisted' => __('Unlisted', 'upload-field-to-youtube-for-acf'), + 'private' => __('Private', 'upload-field-to-youtube-for-acf'), + 'public' => __('Public', 'upload-field-to-youtube-for-acf'), + ], + ] + ); + + acf_render_field_setting( + $field, + [ + 'label' => __('Made for kids', 'upload-field-to-youtube-for-acf'), + 'instructions' => implode( + '
'.PHP_EOL, + [ + // translators: %s: made_for_kids + \sprintf(__('Default: %1$s', 'upload-field-to-youtube-for-acf'), ''.($this->defaults['made_for_kids'] ? __('Yes', 'upload-field-to-youtube-for-acf') : __('No', 'upload-field-to-youtube-for-acf')).''), + ] + ), + 'type' => 'true_false', + 'name' => 'made_for_kids', + ] + ); + + acf_render_field_setting( + $field, + [ + 'label' => __('Allow upload', 'upload-field-to-youtube-for-acf'), + 'instructions' => implode( + '
'.PHP_EOL, + [ + // translators: %s: allow_upload + \sprintf(__('Default: %1$s', 'upload-field-to-youtube-for-acf'), ''.($this->defaults['allow_upload'] ? __('Yes', 'upload-field-to-youtube-for-acf') : __('No', 'upload-field-to-youtube-for-acf')).''), + ] + ), + 'type' => 'true_false', + 'name' => 'allow_upload', + ] + ); + + acf_render_field_setting( + $field, + [ + 'label' => __('Allow select', 'upload-field-to-youtube-for-acf'), + 'instructions' => implode( + '
'.PHP_EOL, + [ + // translators: %s: allow_select + \sprintf(__('Default: %1$s', 'upload-field-to-youtube-for-acf'), ''.($this->defaults['allow_select'] ? __('Yes', 'upload-field-to-youtube-for-acf') : __('No', 'upload-field-to-youtube-for-acf')).''), + ] + ), + 'type' => 'true_false', + 'name' => 'allow_select', + ] + ); + + acf_render_field_setting( + $field, + [ + 'label' => __('Update YouTube video on post update', 'upload-field-to-youtube-for-acf'), + 'instructions' => implode( + '
'.PHP_EOL, + [ + // translators: %s: api_update_on_post_update + \sprintf(__('Default: %1$s', 'upload-field-to-youtube-for-acf'), ''.($this->defaults['api_update_on_post_update'] ? __('Yes', 'upload-field-to-youtube-for-acf') : __('No', 'upload-field-to-youtube-for-acf')).''), + ] + ), + 'type' => 'true_false', + 'name' => 'api_update_on_post_update', + ] + ); + + acf_render_field_setting( + $field, + [ + 'label' => __('Delete YouTube video on post delete', 'upload-field-to-youtube-for-acf'), + 'instructions' => implode( + '
'.PHP_EOL, + [ + // translators: %s: api_delete_on_post_delete + \sprintf(__('Default: %1$s', 'upload-field-to-youtube-for-acf'), ''.($this->defaults['api_delete_on_post_delete'] ? __('Yes', 'upload-field-to-youtube-for-acf') : __('No', 'upload-field-to-youtube-for-acf')).''), + ] + ), + 'type' => 'true_false', + 'name' => 'api_delete_on_post_delete', + ] + ); + + // To render field settings on other tabs in ACF 6.0+: + // https://www.advancedcustomfields.com/resources/adding-custom-settings-fields/#moving-field-setting + } + + /** + * HTML content to show when a publisher edits the field on the edit screen. + * + * @param array $field the field settings and values + */ + public function render_field($field): void + { + ?> +
+ + + +

+ + + +

+ get_access_token()) { ?> + + +
+ + + +
+ + +
+ + + +
+ get_playlists_by_privacy_status($field['privacy_status']); + if (!empty($result['items'])) { ?> +

+ + +

+ +

+ + +

+ +

+ +
+ +
+ +

+

+ +

+ +

+ +
+env['version']; + $url = trailingslashit($this->env['url']); + $path = trailingslashit($this->env['path']); + $cache_busting = $this->env['cache_busting']; + + // https://wordpress.stackexchange.com/a/273996/99214 + // https://stackoverflow.com/a/59665364/3929620 + // No need to enqueue -core, because dependancies are set. + wp_enqueue_script('jquery-ui-tabs'); + + // WordPress does not register jQuery UI styles by default! + // If you're going to submit your plugin to the wordpress.org repo, then you need to load the CSS locally + // (see: https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/#8-plugins-may-not-send-executable-code-via-third-party-systems). + // https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css + wp_enqueue_style( + 'jquery-ui-css', + $url.'asset/css/jquery-ui.min'.($cache_busting ? '.'.filemtime($path.'asset/css/jquery-ui.min.css') : '').'.css', + ['acf-input'], + $version + ); + + add_thickbox(); + + wp_register_script( + FRUGAN_UFTYFACF_NAME, + $url.'asset/js/main'.($cache_busting ? '.'.filemtime($path.'asset/js/main.js') : '').'.js', + ['acf-input'], + $version, + [ + 'in_footer' => true, + ] + ); + + // $object_name is the name of the variable which will contain the data. + // Note that this should be unique to both the script and to the plugin or theme. + // Thus, the value here should be properly prefixed with the slug or another unique value, + // to prevent conflicts. However, as this is a JavaScript object name, it cannot contain dashes. + // Use underscores or camelCasing. + wp_localize_script(FRUGAN_UFTYFACF_NAME, $this->name.'_obj', [ + 'postStatus' => $post ? $post->post_status : null, + ]); + + wp_register_style( + FRUGAN_UFTYFACF_NAME, + $url.'asset/css/main'.($cache_busting ? '.'.filemtime($path.'asset/css/main.css') : '').'.css', + ['acf-input'], + $version + ); + + wp_enqueue_script(FRUGAN_UFTYFACF_NAME); + wp_enqueue_style(FRUGAN_UFTYFACF_NAME); + } + + public function validate_value($valid, mixed $value, $field, $input) + { + try { + if (empty($value) && !empty($field['required'])) { + // translators: %s: label + throw new \InvalidArgumentException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), $field['label'])); + } + + if (!empty($value)) { + $api_update_on_post_update = (!empty($_POST['mode']) && 'upload' === $_POST['mode']) || !empty($field['api_update_on_post_update']); + if ($api_update_on_post_update) { + $post_id = (int) ($_POST['post_ID'] ?? $_POST['post_id']); + $is_gutenberg = \function_exists('use_block_editor_for_post') && use_block_editor_for_post($post_id); + if ($is_gutenberg) { + $post = get_post($post_id); + $title = sanitize_text_field($post->post_title ?? ''); + $excerpt = sanitize_text_field($post->post_excerpt ?? ''); + } else { + $title = isset($_POST['post_title']) ? sanitize_text_field($_POST['post_title']) : ''; + $excerpt = isset($_POST['excerpt']) ? sanitize_text_field($_POST['excerpt']) : ''; + } + + if (empty($title)) { + // translators: %s: Title + throw new \LengthException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), __('Title', 'upload-field-to-youtube-for-acf'))); + } + + /*if (empty($excerpt)) { + // translators: %s: Excerpt + throw new \LengthException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), __('Excerpt', 'upload-field-to-youtube-for-acf'))); + }*/ + } + + $this->check_oauth_token(); + $googleServiceYouTube = new \Google_Service_YouTube($this->get_google_client()); + + // Quota impact: A call to this method has a quota cost of 1 unit. + $response = $googleServiceYouTube->videos->listVideos('snippet', ['id' => $value]); + + // translators: %s: value + $this->log('debug', \sprintf(__('Video "%1$s" retrieved successfully', 'upload-field-to-youtube-for-acf'), $value), ['response' => $response]); + + if (empty($response->getItems())) { + throw new \Exception(__('This video is not associated with your authorized YouTube account', 'upload-field-to-youtube-for-acf')); + } + } + } catch (\InvalidArgumentException|\LengthException $exception) { + // FIXED - https://github.com/inpsyde/Wonolog/blob/2.x/src/HookLogFactory.php#L135 + // use `$exception->getMessage()` instead of `$exception`, because Wonolog + // assigns the ERROR level to messages that are instances of Throwable + $this->log('warning', $exception->getMessage()); + $valid = $exception->getMessage(); + } catch (\Google_Service_Exception $exception) { + $this->log('error', $exception, ['response' => $response ?? null]); + $error_data = json_decode($exception->getMessage(), true); + $valid = $error_data['error']['message'] ?? $exception->getMessage(); + } catch (\Exception $exception) { + $this->log('error', $exception); + $valid = $exception->getMessage(); + } + + return $valid; + } + + public function update_value(mixed $value, mixed $post_id, $field) + { + try { + $api_update_on_post_update = (!empty($_POST['mode']) && 'upload' === $_POST['mode']) || !empty($field['api_update_on_post_update']); + if (!$api_update_on_post_update) { + return $value; + } + + if (!empty($value)) { + $this->check_oauth_token(); + $googleServiceYouTube = new \Google_Service_YouTube($this->get_google_client()); + + // Quota impact: A call to this method has a quota cost of 1 unit. + $response = $googleServiceYouTube->videos->listVideos('snippet', ['id' => $value]); + $videoSnippet = $response->getItems()[0]->getSnippet(); + + $googleServiceYouTubeVideoSnippet = new \Google_Service_YouTube_VideoSnippet(); + $googleServiceYouTubeVideoSnippet->setCategoryId($videoSnippet->getCategoryId() ?? $field['category_id']); + $googleServiceYouTubeVideoSnippet->setTitle(get_the_title($post_id)); + + if (!empty($excerpt = get_post_field('post_excerpt', $post_id))) { + $googleServiceYouTubeVideoSnippet->setDescription($excerpt); + } + + $googleServiceYouTubeVideo = new \Google_Service_YouTube_Video(); + $googleServiceYouTubeVideo->setId($value); + $googleServiceYouTubeVideo->setSnippet($googleServiceYouTubeVideoSnippet); + + // Quota impact: A call to this method has a quota cost of 50 units. + $response = $googleServiceYouTube->videos->update('snippet', $googleServiceYouTubeVideo); + + // translators: %s: value + $this->log('info', \sprintf(__('Video "%1$s" updated successfully', 'upload-field-to-youtube-for-acf'), $value), ['response' => $response]); + } + } catch (\Exception $exception) { + $this->log('error', $exception, ['response' => $response ?? null]); + } + + return $value; + } + + public function before_delete_post(int $post_id): void + { + $fields = get_field_objects($post_id); + + if ($fields) { + foreach ($fields as $field) { + if (!empty($field['type']) && !empty($field['value']) && $field['type'] === $this->name) { + try { + if (empty($field['api_delete_on_post_delete'])) { + continue; + } + + $this->check_oauth_token(); + $googleServiceYouTube = new \Google_Service_YouTube($this->get_google_client()); + + // Quota impact: A call to this method has a quota cost of 50 units. + $response = $googleServiceYouTube->videos->delete($field['value']); + + // translators: %s: value + $this->log('info', \sprintf(__('Video "%1$s" deleted successfully', 'upload-field-to-youtube-for-acf'), $field['value']), ['response' => $response]); + } catch (\Exception $exception) { + $this->log('error', $exception, ['response' => $response ?? null]); + } + } + } + } + } + + public function settings_page(): void + { + $oauth = $this->handle_oauth(); + $status = $oauth['status'] ?? 'error'; + + echo '
'; + echo '

'.esc_html($this->label).'

'; + + switch ($status) { + case 'authorize': + echo '
'; + echo '

'.esc_html($this->label).'

'; + echo '

'.esc_html($oauth['message']).'

'; + echo '

'.esc_html__('Authorize App', 'upload-field-to-youtube-for-acf').'

'; + echo '
'; + + break; + + case 'authorized': + echo '
'; + echo '

'.esc_html($oauth['message']).'

'; + echo '
'; + + echo '
'; + echo ''; + submit_button(__('Logout from YouTube', 'upload-field-to-youtube-for-acf')); + echo '
'; + + break; + + case 'error': + echo '
'; + echo '

'.esc_html($oauth['message']).'

'; + echo '
'; + + break; + } + + echo '
'; + } + + public function set_google_client(): void + { + if ($this->get_google_client() instanceof Client) { + return; + } + + $this->client = new Client(); + $this->client->setClientId(FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID); + $this->client->setClientSecret(FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET); + $this->client->setRedirectUri(admin_url()); + $this->client->addScope(Oauth2::USERINFO_EMAIL); + $this->client->addScope(YouTube::YOUTUBE_FORCE_SSL); + $this->client->addScope(YouTube::YOUTUBE_UPLOAD); + $this->client->setAccessType('offline'); + $this->client->setPrompt('select_account consent'); + + if ($this->is_wonolog_active()) { + // https://github.com/inpsyde/Wonolog/pull/55 + $this->client->setLogger(\Inpsyde\Wonolog\makeLogger()); + } + } + + public function get_google_client() + { + return $this->client; + } + + public function set_access_token(null|array|bool $token): void + { + $this->access_token = $token; + } + + public function get_access_token(): null|array|bool + { + return $this->access_token; + } + + public function check_oauth_token(): void + { + $this->set_access_token(get_option(FRUGAN_UFTYFACF_NAME.'__access_token')); + + if ($this->get_access_token()) { + $this->set_google_client(); + + $this->client->setAccessToken($this->get_access_token()); + + if ($this->client->isAccessTokenExpired()) { + $this->set_access_token($this->client->fetchAccessTokenWithRefreshToken($this->client->getRefreshToken())); + update_option(FRUGAN_UFTYFACF_NAME.'__access_token', $this->get_access_token()); + + $this->client->setAccessToken($this->get_access_token()); + } + } + } + + public static function activate(): void + { + if (!wp_next_scheduled(FRUGAN_UFTYFACF_NAME.'__check_oauth_token')) { + wp_schedule_event(time(), 'hourly', FRUGAN_UFTYFACF_NAME.'__check_oauth_token'); + } + } + + public static function deactivate($network_deactivating = false): void + { + delete_option(FRUGAN_UFTYFACF_NAME.'__access_token'); + + $timestamp = wp_next_scheduled(FRUGAN_UFTYFACF_NAME.'__check_oauth_token'); + wp_unschedule_event($timestamp, FRUGAN_UFTYFACF_NAME.'__check_oauth_token'); + } + + public function handle_oauth(): array + { + // @phpstan-ignore-next-line + if (!\defined('FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID') || !\defined('FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET') || empty(FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_ID) || empty(FRUGAN_UFTYFACF_GOOGLE_OAUTH_CLIENT_SECRET)) { + $data = [ + 'status' => 'error', + 'message' => __('Missing or wrong OAuth credentials.', 'upload-field-to-youtube-for-acf'), + ]; + + $this->log('error', $data); + + return $data; + } + + $this->check_oauth_token(); + + if (!$this->get_access_token()) { + if (!current_user_can('manage_options') || !current_user_can('manage_'.$this->name)) { + $data = [ + 'status' => 'error', + 'message' => __('App not authorized, contact your system administrator.', 'upload-field-to-youtube-for-acf'), + ]; + + $this->log('error', $data); + + return $data; + } + + $this->set_google_client(); + + if (isset($_GET['code'])) { + $this->client->authenticate(wp_unslash($_GET['code'])); + $this->set_access_token($this->client->getAccessToken()); + update_option(FRUGAN_UFTYFACF_NAME.'__access_token', $this->get_access_token()); + + $data = [ + 'status' => 'success', + 'message' => __('App authorized! You can now upload videos to YouTube.', 'upload-field-to-youtube-for-acf'), + ]; + + $this->log('info', $data); + + return $data; + } + + $auth_url = $this->client->createAuthUrl(); + + return [ + 'status' => 'authorize', + 'message' => __('Authorize the app to upload videos to YouTube:', 'upload-field-to-youtube-for-acf'), + 'auth_url' => $auth_url, + ]; + } + + $googleServiceOauth2 = new \Google_Service_Oauth2($this->get_google_client()); + $user_info = $googleServiceOauth2->userinfo->get(); + + return [ + 'status' => 'authorized', + // translators: %s: email + 'message' => \sprintf(__('App authorized! You are logged in as: %1$s', 'upload-field-to-youtube-for-acf'), $user_info->email), + ]; + } + + public function get_playlists_by_privacy_status($privacy_status): array + { + $result = []; + + try { + $this->check_oauth_token(); + $googleServiceYouTube = new \Google_Service_YouTube($this->get_google_client()); + $params = [ + 'part' => 'snippet,status', + 'mine' => true, + 'maxResults' => 50, + ]; + + // Quota impact: A call to this method has a quota cost of 1 unit. + $response = $googleServiceYouTube->playlists->listPlaylists('snippet,status', $params); + + $this->log('debug', __('Playlists retrieved successfully', 'upload-field-to-youtube-for-acf'), [ + 'privacy_status' => $privacy_status, + 'response' => $response, + ]); + + foreach ($response->getItems() as $item) { + $playlistId = $item->getId(); + if (!isset($result[$playlistId])) { + $status = $item->getStatus(); + if ($status && $status->getPrivacyStatus() === $privacy_status) { + $result[$playlistId] = [ + 'id' => $playlistId, + 'title' => $item->getSnippet()->getTitle(), + ]; + } + } + } + + if ($result) { + $result = [ + 'items' => array_values($result), + ]; + + if (!empty($nextPageToken = $response->getNextPageToken())) { + $result['nextPageToken'] = $nextPageToken; + } + } + } catch (\Exception $exception) { + $this->log('error', $exception, ['response' => $response ?? null]); + } + + return $result; + } + + // https://stackoverflow.com/a/74402514/3929620 + // https://developers.google.com/youtube/v3/guides/using_resumable_upload_protocol + // https://github.com/youtube/api-samples/blob/master/php/resumable_upload.php + // https://github.com/googleapis/google-api-php-client + // https://developers.google.com/youtube/v3/getting-started#quota + // https://developers.google.com/youtube/v3/determine_quota_cost + public function wp_ajax_get_youtube_upload_url(): void + { + try { + $post_id = isset($_POST['post_id']) ? (int) $_POST['post_id'] : 0; + if (empty($post_id)) { + // translators: %s: post_id + throw new \InvalidArgumentException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), 'post_id')); + } + + $field_key = isset($_POST['field_key']) ? sanitize_text_field($_POST['field_key']) : ''; + if (empty($field_key)) { + // translators: %s: field_key + throw new \InvalidArgumentException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), 'field_key')); + } + + // https://support.advancedcustomfields.com/forums/topic/get-choices-from-field-without-post_id/ + $field = get_field_object($field_key); + if (!$field) { + // translators: %s: field_key + throw new \InvalidArgumentException(\sprintf(__('Unable to retrieve field "%1$s"', 'upload-field-to-youtube-for-acf'), $field_key)); + } + + $this->check_oauth_token(); + $googleServiceYouTube = new \Google_Service_YouTube($this->get_google_client()); + + $googleServiceYouTubeVideoSnippet = new \Google_Service_YouTube_VideoSnippet(); + $googleServiceYouTubeVideoSnippet->setCategoryId($field['category_id']); + $googleServiceYouTubeVideoSnippet->setTags(explode(',', $field['tags'])); + $googleServiceYouTubeVideoSnippet->setTitle(get_the_title($post_id)); + + if (!empty($excerpt = get_post_field('post_excerpt', $post_id))) { + $googleServiceYouTubeVideoSnippet->setDescription($excerpt); + } + + $googleServiceYouTubeVideoStatus = new \Google_Service_YouTube_VideoStatus(); + // All videos uploaded via the videos.insert endpoint from unverified API projects + // created after 28 July 2020 will be restricted to private viewing mode. + // To lift this restriction, each API project must undergo an audit to verify compliance + // with the Terms of Service. Please see the API Revision History for more details. + $googleServiceYouTubeVideoStatus->setPrivacyStatus($field['privacy_status']); + $googleServiceYouTubeVideoStatus->setSelfDeclaredMadeForKids($field['made_for_kids']); // or setMadeForKids() + + $googleServiceYouTubeVideo = new \Google_Service_YouTube_Video(); + $googleServiceYouTubeVideo->setSnippet($googleServiceYouTubeVideoSnippet); + $googleServiceYouTubeVideo->setStatus($googleServiceYouTubeVideoStatus); + + // Quota impact: A call to this method has a quota cost of 1600 units. + $response = $googleServiceYouTube->videos->insert('snippet,status', $googleServiceYouTubeVideo, [ + 'uploadType' => 'resumable', + ]); + + $uploadUrl = $response->getRequest()->getLastHeaders()['location'] ?? null; + if ($uploadUrl) { + // translators: %s: response + $this->log('debug', \sprintf(__('Video "%1$s" retrieved successfully', 'upload-field-to-youtube-for-acf'), 'response'), ['response' => $response]); + wp_send_json_success(['upload_url' => $uploadUrl]); + } else { + // translators: %s: location + throw new \Exception(\sprintf(__('Unable to retrieve "%1$s" from response headers', 'upload-field-to-youtube-for-acf'), 'location')); + } + } catch (\Google_Service_Exception $exception) { + $this->log('error', $exception, ['response' => $response ?? null]); + $error_data = json_decode($exception->getMessage(), true); + $error_message = $error_data['error']['message'] ?? $exception->getMessage(); + wp_send_json_error(['message' => $error_message]); + } catch (\Exception $exception) { + $this->log('error', $exception); + wp_send_json_error(['message' => $exception->getMessage()]); + } + } + + public function wp_ajax_save_youtube_video_id(): void + { + try { + $post_id = isset($_POST['post_id']) ? (int) $_POST['post_id'] : 0; + if (empty($post_id)) { + // translators: %s: post_id + throw new \InvalidArgumentException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), 'post_id')); + } + + $video_id = isset($_POST['video_id']) ? sanitize_text_field($_POST['video_id']) : ''; + if (empty($video_id)) { + // translators: %s: video_id + throw new \InvalidArgumentException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), 'video_id')); + } + + if (!current_user_can('edit_post', $post_id)) { + // translators: %s: video_id + throw new \Exception(\sprintf(__('Insufficient permissions to save video "%1$s"', 'upload-field-to-youtube-for-acf'), $video_id)); + } + + $field_key = isset($_POST['field_key']) ? sanitize_text_field($_POST['field_key']) : ''; + if (empty($field_key)) { + // translators: %s: field_key + throw new \InvalidArgumentException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), 'field_key')); + } + + $result = update_field($field_key, $video_id, $post_id); + if ($result) { + wp_send_json_success(); + } + + // translators: %1$s: video_id, %2$s: field_key, %3$d: post_id + throw new \UnexpectedValueException(\sprintf(__('Unable to save video "%1$s" to field "%2$s" in post ID "%3$d"', 'upload-field-to-youtube-for-acf'), $video_id, $field_key, $post_id)); + } catch (\Exception $exception) { + $this->log('error', $exception); + wp_send_json_error(['message' => $exception->getMessage()]); + } + } + + public function wp_ajax_get_videos_by_playlist(): void + { + try { + $field_key = isset($_POST['field_key']) ? sanitize_text_field($_POST['field_key']) : ''; + if (empty($field_key)) { + // translators: %s: field_key + throw new \InvalidArgumentException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), 'field_key')); + } + + // https://support.advancedcustomfields.com/forums/topic/get-choices-from-field-without-post_id/ + $field = get_field_object($field_key); + if (!$field) { + // translators: %s: field_key + throw new \InvalidArgumentException(\sprintf(__('Unable to retrieve field "%1$s"', 'upload-field-to-youtube-for-acf'), $field_key)); + } + + $playlist_id = isset($_POST['playlist_id']) ? sanitize_text_field($_POST['playlist_id']) : ''; + if (empty($playlist_id)) { + // translators: %s: playlist_id + throw new \InvalidArgumentException(\sprintf(__('Empty field "%1$s"', 'upload-field-to-youtube-for-acf'), 'playlist_id')); + } + + $this->check_oauth_token(); + $googleServiceYouTube = new \Google_Service_YouTube($this->get_google_client()); + $params = [ + 'playlistId' => $playlist_id, + 'maxResults' => 50, + ]; + + // Quota impact: A call to this method has a quota cost of 1 unit. + $response = $googleServiceYouTube->playlistItems->listPlaylistItems('snippet,status', $params); + + // translators: %s: playlist_id + $this->log('debug', \sprintf(__('Videos retrieved successfully by playlist ID "%1$s"', 'upload-field-to-youtube-for-acf'), $playlist_id), [ + 'privacy_status' => $field['privacy_status'], + 'response' => $response, + ]); + + $result = []; + foreach ($response->getItems() as $item) { + $videoId = $item->getSnippet()->getResourceId()->getVideoId(); + if (!isset($result[$videoId])) { + $status = $item->getStatus(); + if ($status && $status->getPrivacyStatus() === $field['privacy_status']) { + $result[$videoId] = [ + 'id' => $videoId, + 'title' => $item->getSnippet()->getTitle(), + ]; + } + } + } + + if ($result) { + $result = [ + 'items' => array_values($result), + ]; + + if (!empty($nextPageToken = $response->getNextPageToken())) { + $result['nextPageToken'] = $nextPageToken; + } + + wp_send_json_success($result); + } + + // translators: %s: playlist_id + throw new \UnexpectedValueException(\sprintf(__('Unable to retrieve videos by playlist ID "%1$s"', 'upload-field-to-youtube-for-acf'), $playlist_id)); + } catch (\UnexpectedValueException $exception) { + // FIXED - https://github.com/inpsyde/Wonolog/blob/2.x/src/HookLogFactory.php#L135 + // use `$exception->getMessage()` instead of `$exception`, because Wonolog + // assigns the ERROR level to messages that are instances of Throwable + $this->log('warning', $exception->getMessage()); + wp_send_json_error(['message' => $exception->getMessage()]); + } catch (\Exception $exception) { + $this->log('error', $exception); + wp_send_json_error(['message' => $exception->getMessage()]); + } + } + + public function log($level, $message, array $context = []): void + { + if ($this->is_wonolog_active()) { + do_action('wonolog.log.'.$level, $message, $context); + } else { + if ($message instanceof \Throwable) { + $message = $message->getMessage(); + } elseif (is_wp_error($message)) { + $context['wp_error_data'] = $message->get_error_data(); + $message = $message->get_error_message(); + } + + if (\is_array($message)) { + $message = 'Message: '.wp_json_encode($message); + } + + if (!empty($context)) { + $message .= ' | Context: '.wp_json_encode($context); + } + + error_log($message); + } + } + + public function is_wonolog_active() + { + return \function_exists('did_action') && class_exists(Configurator::class) && \defined(Configurator::class.'::ACTION_SETUP') && did_action(Configurator::ACTION_SETUP); + } +} diff --git a/upload-field-to-youtube-for-acf/tests/bootstrap.php b/upload-field-to-youtube-for-acf/tests/bootstrap.php new file mode 100644 index 0000000..abe4277 --- /dev/null +++ b/upload-field-to-youtube-for-acf/tests/bootstrap.php @@ -0,0 +1,16 @@ + + * + * This source file is subject to the GNU GPLv3 or later license that is bundled + * with this source code in the file LICENSE. + */ + +require_once __DIR__.'/stubs/functions.stub'; + +require_once __DIR__.'/stubs/constants.stub'; diff --git a/upload-field-to-youtube-for-acf/tests/data/acf/default.json b/upload-field-to-youtube-for-acf/tests/data/acf/default.json new file mode 100644 index 0000000..7890459 --- /dev/null +++ b/upload-field-to-youtube-for-acf/tests/data/acf/default.json @@ -0,0 +1,57 @@ +[ + { + "key": "group_671b9beba76b3", + "title": "Post and page", + "fields": [ + { + "key": "field_671b9bed1f538", + "label": "Video", + "name": "youtube_video_id", + "aria-label": "", + "type": "youtube_uploader", + "instructions": "", + "required": 1, + "conditional_logic": 0, + "wrapper": { + "width": "", + "class": "", + "id": "" + }, + "category_id": 22, + "tags": "", + "privacy_status": "unlisted", + "made_for_kids": 0, + "allow_upload": 1, + "allow_select": 1, + "api_update_on_post_update": 1, + "api_delete_on_post_delete": 1, + "allow_in_bindings": 0 + } + ], + "location": [ + [ + { + "param": "post_type", + "operator": "==", + "value": "post" + } + ], + [ + { + "param": "post_type", + "operator": "==", + "value": "page" + } + ] + ], + "menu_order": 0, + "position": "normal", + "style": "default", + "label_placement": "top", + "instruction_placement": "label", + "hide_on_screen": "", + "active": true, + "description": "", + "show_in_rest": 0 + } +] diff --git a/upload-field-to-youtube-for-acf/tests/data/wp-cfm/default.json b/upload-field-to-youtube-for-acf/tests/data/wp-cfm/default.json new file mode 100644 index 0000000..fa010bf --- /dev/null +++ b/upload-field-to-youtube-for-acf/tests/data/wp-cfm/default.json @@ -0,0 +1,7 @@ +{ + "active_plugins": "a:12:{i:0;s:83:\"acf-repeater-flexible-content-collapser\/acf-repeater-flexible-content-collapser.php\";i:1;s:29:\"acf-repeater\/acf-repeater.php\";i:2;s:61:\"advanced-custom-fields-wpcli\/advanced-custom-fields-wpcli.php\";i:3;s:30:\"advanced-custom-fields\/acf.php\";i:4;s:33:\"classic-editor\/classic-editor.php\";i:5;s:23:\"debug-bar\/debug-bar.php\";i:6;s:23:\"plugin-check\/plugin.php\";i:7;s:51:\"rewrite-rules-inspector\/rewrite-rules-inspector.php\";i:8;s:67:\"upload-field-to-youtube-for-acf\/upload-field-to-youtube-for-acf.php\";i:9;s:41:\"wordpress-kint-debugger\/kint-debugger.php\";i:10;s:17:\"wp-cfm\/wp-cfm.php\";i:11;s:29:\"wp-mail-smtp\/wp_mail_smtp.php\";}", + "classic-editor-allow-users": "allow", + "classic-editor-replace": "block", + "wp_debugging": "a:3:{s:8:\"wp_debug\";s:1:\"1\";s:16:\"wp_debug_display\";s:1:\"1\";s:30:\"wp_disable_fatal_error_handler\";s:1:\"1\";}", + ".label": "default" +} \ No newline at end of file diff --git a/upload-field-to-youtube-for-acf/tests/phpunit.xml b/upload-field-to-youtube-for-acf/tests/phpunit.xml new file mode 100644 index 0000000..e69de29 diff --git a/upload-field-to-youtube-for-acf/tests/stubs/constants.stub b/upload-field-to-youtube-for-acf/tests/stubs/constants.stub new file mode 100644 index 0000000..b451500 --- /dev/null +++ b/upload-field-to-youtube-for-acf/tests/stubs/constants.stub @@ -0,0 +1,10 @@ + + * + * This source file is subject to the GNU GPLv3 or later license that is bundled + * with this source code in the file LICENSE. + */ + +use FruganUFTYFACF\Bootstrap; + +/* + * Plugin Name: Upload Field to YouTube for ACF + * Plugin URI: https://github.com/frugan-dev/upload-field-to-youtube-for-acf + * Description: Upload Field to YouTube for ACF is a WordPress plugin that allows you to upload videos directly to YouTube via API from the WordPress admin area and/or select existing videos on your YouTube channel based on playlists. + * Version: 0.1.0 + * Requires PHP: 8.0 + * Author: Frugan + * Author URI: https://frugan.it + * License: GPLv3 or later + * License URI: http://www.gnu.org/licenses/gpl-3.0.html + * Donate link: https://buymeacoff.ee/frugan + */ + +if (!defined('ABSPATH')) { + exit; +} + +if (file_exists(__DIR__.'/vendor/autoload.php')) { + require __DIR__.'/vendor/autoload.php'; +} + +define('FRUGAN_UFTYFACF_VERSION', '0.1.0'); +define('FRUGAN_UFTYFACF_BASENAME', plugin_basename(__FILE__)); +define('FRUGAN_UFTYFACF_NAME', dirname(FRUGAN_UFTYFACF_BASENAME)); +define('FRUGAN_UFTYFACF_NAME_UNDERSCORE', str_replace('-', '_', FRUGAN_UFTYFACF_NAME)); +define('FRUGAN_UFTYFACF_URL', plugin_dir_url(__FILE__)); +define('FRUGAN_UFTYFACF_PATH', plugin_dir_path(__FILE__)); + +Bootstrap::get_instance();