[PR #75] [MERGED] Add PocketID OAuth Provider Plugin #101

Closed
opened 2026-05-07 00:18:05 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/pelican-dev/plugins/pull/75
Author: @Ebnater
Created: 1/4/2026
Status: Merged
Merged: 1/6/2026
Merged by: @Boy132

Base: mainHead: main


📝 Commits (10+)

  • 5489e98 add PocketID provider plugin with OAuth integration
  • 1cf728d update plugin URL to correct path for PocketID provider
  • 1342561 füge composer_packages für die Laravel Socialite OIDC-Abhängigkeit hinzu
  • 748e923 entferne hintCopy von der Callback-URL im PocketIDSchema und füge die Provider-Klasse für OAuth-Integration hinzu
  • 76b789f entferne überflüssigen Kommentar aus der Provider-Klasse
  • 3d6466d aktualisiere Abhängigkeiten im Plugin und entferne nicht mehr benötigte Provider-Klasse
  • 9a7e859 aktualisiere Abhängigkeit für socialiteproviders/pocketid auf Version 5.0
  • 3438b15 füge socialiteproviders/pocketid Abhängigkeit zu den Plugin-Abhängigkeiten hinzu
  • 9904b37 füge fehlende neue Zeile am Ende der Datei PocketIDProviderPluginProvider.php hinzu
  • a4bae19 plugin ordner umbenennen

📊 Changes

7 files changed (+160 additions, -1 deletions)

View changed files

📝 .github/workflows/lint.yml (+1 -1)
📝 README.md (+1 -0)
pocketid-provider/README.md (+12 -0)
pocketid-provider/plugin.json (+17 -0)
pocketid-provider/src/Extensions/OAuth/Schemas/PocketIDSchema.php (+95 -0)
pocketid-provider/src/PocketIDProviderPlugin.php (+18 -0)
pocketid-provider/src/Providers/PocketIDProviderPluginProvider.php (+16 -0)

📄 Description

I added a PocketIDSchema to OAuth Providers. The initial code is copied from this repo.

Summary by CodeRabbit

  • New Features

    • Added PocketID as an OAuth provider in the UI with configurable base URL, callback, display name, and color.
  • Documentation

    • Added plugin documentation and a Plugins list entry describing PocketID setup and integration with OAuth settings.
  • Chores

    • CI updated to install the PocketID Socialite provider dependency during workflow runs.

✏️ Tip: You can customize this high-level summary in your review settings.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/pelican-dev/plugins/pull/75 **Author:** [@Ebnater](https://github.com/Ebnater) **Created:** 1/4/2026 **Status:** ✅ Merged **Merged:** 1/6/2026 **Merged by:** [@Boy132](https://github.com/Boy132) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`5489e98`](https://github.com/pelican-dev/plugins/commit/5489e981d47189fb89bce55784476f84f6441f9c) add PocketID provider plugin with OAuth integration - [`1cf728d`](https://github.com/pelican-dev/plugins/commit/1cf728d9b9b061c3c636acfe3a9d29b5ae24920b) update plugin URL to correct path for PocketID provider - [`1342561`](https://github.com/pelican-dev/plugins/commit/1342561a54fd4f2f8027dbbc26ed7afaa4dd6dac) füge composer_packages für die Laravel Socialite OIDC-Abhängigkeit hinzu - [`748e923`](https://github.com/pelican-dev/plugins/commit/748e9236e11a19df120b9261ed5a6adaab8fe3fb) entferne hintCopy von der Callback-URL im PocketIDSchema und füge die Provider-Klasse für OAuth-Integration hinzu - [`76b789f`](https://github.com/pelican-dev/plugins/commit/76b789f8340fbf699faf969c83a82ebe792375d8) entferne überflüssigen Kommentar aus der Provider-Klasse - [`3d6466d`](https://github.com/pelican-dev/plugins/commit/3d6466de2a80540d506fad0d277d76e967bdea79) aktualisiere Abhängigkeiten im Plugin und entferne nicht mehr benötigte Provider-Klasse - [`9a7e859`](https://github.com/pelican-dev/plugins/commit/9a7e85959404005bd921f4320ed19b5e7bf1e596) aktualisiere Abhängigkeit für socialiteproviders/pocketid auf Version 5.0 - [`3438b15`](https://github.com/pelican-dev/plugins/commit/3438b154262b352eea3e7f3c9539217c8fcb15f6) füge socialiteproviders/pocketid Abhängigkeit zu den Plugin-Abhängigkeiten hinzu - [`9904b37`](https://github.com/pelican-dev/plugins/commit/9904b37d8331f2c22e67cc9e8f4e55d4e8ccdd44) füge fehlende neue Zeile am Ende der Datei PocketIDProviderPluginProvider.php hinzu - [`a4bae19`](https://github.com/pelican-dev/plugins/commit/a4bae1962467787befff256a072749ae1cf3da00) plugin ordner umbenennen ### 📊 Changes **7 files changed** (+160 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/lint.yml` (+1 -1) 📝 `README.md` (+1 -0) ➕ `pocketid-provider/README.md` (+12 -0) ➕ `pocketid-provider/plugin.json` (+17 -0) ➕ `pocketid-provider/src/Extensions/OAuth/Schemas/PocketIDSchema.php` (+95 -0) ➕ `pocketid-provider/src/PocketIDProviderPlugin.php` (+18 -0) ➕ `pocketid-provider/src/Providers/PocketIDProviderPluginProvider.php` (+16 -0) </details> ### 📄 Description I added a PocketIDSchema to OAuth Providers. The initial code is copied from [this repo](https://github.com/devilr33f/pelican-pocketid/blob/51292e9d52f31fd185fd1ba5a6d8fd34bf23a42c/patch/PocketIDSchema.php). <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added PocketID as an OAuth provider in the UI with configurable base URL, callback, display name, and color. * **Documentation** * Added plugin documentation and a Plugins list entry describing PocketID setup and integration with OAuth settings. * **Chores** * CI updated to install the PocketID Socialite provider dependency during workflow runs. <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-07 00:18:05 +02:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/plugins#101
No description provided.