[PR #63] [MERGED] Add PasteFox Share plugin #91

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

📋 Pull Request Information

Original PR: https://github.com/pelican-dev/plugins/pull/63
Author: @FlexKleks
Created: 12/27/2025
Status: Merged
Merged: 12/30/2025
Merged by: @Boy132

Base: mainHead: main


📝 Commits (10+)

  • fcadc95 Add PasteFox Share plugin
  • 86e45fa Add update URL and update.json for pastefox-share
  • a2e2a80 Remove auto-update, set update_url to null
  • e63f698 Add admin settings page in sidebar
  • b1684fb Add optional API key, effects, password, theme settings
  • 941e842 Fix lint: remove unused imports and whitespace
  • 4e5f3a1 Sync plugin settings modal with admin page settings
  • 58166f8 Fix indentation
  • 44e6071 Add Server Folders plugin
  • 8a8d480 Update Server Folders & PasteFox Share

📊 Changes

8 files changed (+344 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)
pastefox-share/README.md (+42 -0)
pastefox-share/config/pastefox-share.php (+9 -0)
pastefox-share/lang/en/messages.php (+40 -0)
pastefox-share/plugin.json (+15 -0)
pastefox-share/src/Filament/Components/Actions/UploadLogsAction.php (+115 -0)
pastefox-share/src/PasteFoxSharePlugin.php (+104 -0)
pastefox-share/src/Providers/PasteFoxSharePluginProvider.php (+18 -0)

📄 Description

Adds PasteFox Share plugin - allows users to share console logs via pastefox.com with one click.

Features

  • Share console logs directly from the server console page
  • Configurable visibility (PUBLIC/PRIVATE)
  • Fetches up to 5000 log lines

Soon also with different effects, folders, custom domains, etc.

Configuration

Requires PASTEFOX_API_KEY in .env (get from https://pastefox.com/dashboard)

Summary by CodeRabbit

  • New Features

    • PasteFox Share plugin: one-click sharing of server console logs with a returned shareable link
    • Console header action to upload logs and notify users with the link
    • Settings UI to configure API key, visibility, visual effect, theme, and optional password
  • Documentation

    • New README with installation, configuration, and usage steps
  • Localization

    • English UI messages for sharing workflow and notifications

✏️ 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/63 **Author:** [@FlexKleks](https://github.com/FlexKleks) **Created:** 12/27/2025 **Status:** ✅ Merged **Merged:** 12/30/2025 **Merged by:** [@Boy132](https://github.com/Boy132) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`fcadc95`](https://github.com/pelican-dev/plugins/commit/fcadc95d4006b212965215f5ee466fc2d4329e05) Add PasteFox Share plugin - [`86e45fa`](https://github.com/pelican-dev/plugins/commit/86e45fa0251bcd0f1a1662dec8cccb941f41bdda) Add update URL and update.json for pastefox-share - [`a2e2a80`](https://github.com/pelican-dev/plugins/commit/a2e2a806d9073aac5e2421a1febdd0a7183e425c) Remove auto-update, set update_url to null - [`e63f698`](https://github.com/pelican-dev/plugins/commit/e63f698cf71454a05f48ddbd2bb7c59e2cef49f9) Add admin settings page in sidebar - [`b1684fb`](https://github.com/pelican-dev/plugins/commit/b1684fb3e12aa9260c3c98683afa3316c00e99b7) Add optional API key, effects, password, theme settings - [`941e842`](https://github.com/pelican-dev/plugins/commit/941e8424f7db6a12a96161b345ef9563b150c8bf) Fix lint: remove unused imports and whitespace - [`4e5f3a1`](https://github.com/pelican-dev/plugins/commit/4e5f3a195a17f135bf1dba1760cbc668c95eb29c) Sync plugin settings modal with admin page settings - [`58166f8`](https://github.com/pelican-dev/plugins/commit/58166f8359a249e3e570eef2ae2732a79b4c7777) Fix indentation - [`44e6071`](https://github.com/pelican-dev/plugins/commit/44e607192196410ecd4851b5c60b3dafc730f0bf) Add Server Folders plugin - [`8a8d480`](https://github.com/pelican-dev/plugins/commit/8a8d480da8fe3e34f630ea3a4fbfd2343625e586) Update Server Folders & PasteFox Share ### 📊 Changes **8 files changed** (+344 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) ➕ `pastefox-share/README.md` (+42 -0) ➕ `pastefox-share/config/pastefox-share.php` (+9 -0) ➕ `pastefox-share/lang/en/messages.php` (+40 -0) ➕ `pastefox-share/plugin.json` (+15 -0) ➕ `pastefox-share/src/Filament/Components/Actions/UploadLogsAction.php` (+115 -0) ➕ `pastefox-share/src/PasteFoxSharePlugin.php` (+104 -0) ➕ `pastefox-share/src/Providers/PasteFoxSharePluginProvider.php` (+18 -0) </details> ### 📄 Description Adds PasteFox Share plugin - allows users to share console logs via pastefox.com with one click. ## Features - Share console logs directly from the server console page - Configurable visibility (PUBLIC/PRIVATE) - Fetches up to 5000 log lines Soon also with different effects, folders, custom domains, etc. ## Configuration Requires `PASTEFOX_API_KEY` in `.env` (get from https://pastefox.com/dashboard) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * PasteFox Share plugin: one-click sharing of server console logs with a returned shareable link * Console header action to upload logs and notify users with the link * Settings UI to configure API key, visibility, visual effect, theme, and optional password * **Documentation** * New README with installation, configuration, and usage steps * **Localization** * English UI messages for sharing workflow and notifications <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:02 +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#91
No description provided.