[PR #20] [MERGED] arma-reforger-workshop - Plugin for managing Arma Reforger mods. #73

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

📋 Pull Request Information

Original PR: https://github.com/pelican-dev/plugins/pull/20
Author: @szpolny
Created: 12/20/2025
Status: Merged
Merged: 1/3/2026
Merged by: @Boy132

Base: mainHead: main


📝 Commits (10+)

  • 4409b9b feat: add arma-reforger-workshop plugin
  • 4111baf browse workshop directly in browser
  • 9914044 readme for arma-reforger-workshop plugin
  • 0b04697 Merge branch 'main' into arma-reforger-main
  • c697d86 Merge branch 'pelican-dev:main' into main
  • f042ae1 fix: correct string interpolation in mod notifications
  • 408ae7a eliminate n+1 calls
  • 8befb7b fix pint
  • 4e6ca23 use localization strings instead of hardcoded texts
  • b47ada7 enhance mod enrichment with concurrent requests and caching

📊 Changes

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

View changed files

arma-reforger-workshop/README.md (+57 -0)
arma-reforger-workshop/lang/en/arma-reforger-workshop.php (+60 -0)
arma-reforger-workshop/plugin.json (+17 -0)
arma-reforger-workshop/src/ArmaReforgerWorkshopPlugin.php (+23 -0)
arma-reforger-workshop/src/Facades/ArmaReforgerWorkshop.php (+29 -0)
arma-reforger-workshop/src/Filament/Server/Pages/ArmaReforgerWorkshopPage.php (+361 -0)
arma-reforger-workshop/src/Filament/Server/Pages/BrowseWorkshopPage.php (+230 -0)
arma-reforger-workshop/src/Services/ArmaReforgerWorkshopService.php (+332 -0)

📄 Description

Hi, i created plugin for managing mods for Arma Reforger. The plugin is mainly vibe-coded (because of my poor php knowledge), so free to suggest any improvements.

Summary by CodeRabbit

  • New Features

    • Arma Reforger Workshop UI to view/manage installed mods, add/remove mods, one‑click install, installed-state indicator, open workshop in browser, and open/edit server config.
  • Backend

    • Service for workshop integration: fetch mod details, resolve URLs, parse workshop data, and manage server mod lists.
  • Browse & Search

    • Browse/search Workshop with pagination, thumbnails, mod details, table view, actions, validation and notifications.
  • Caching

    • Short‑TTL caching for mod details and search results.
  • Documentation

    • Added README describing features, requirements, configuration and caching.
  • Localization

    • Added English UI translations.
  • Plugin

    • Plugin manifest and admin panels added.

✏️ 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/20 **Author:** [@szpolny](https://github.com/szpolny) **Created:** 12/20/2025 **Status:** ✅ Merged **Merged:** 1/3/2026 **Merged by:** [@Boy132](https://github.com/Boy132) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`4409b9b`](https://github.com/pelican-dev/plugins/commit/4409b9b692161ec1ae844137b1209745f380312c) feat: add arma-reforger-workshop plugin - [`4111baf`](https://github.com/pelican-dev/plugins/commit/4111baf7b1698efb1992383167d92f74054e7991) browse workshop directly in browser - [`9914044`](https://github.com/pelican-dev/plugins/commit/991404495bdc1f52a836df909b6efb8984bb527e) readme for arma-reforger-workshop plugin - [`0b04697`](https://github.com/pelican-dev/plugins/commit/0b04697b56faacdceedbe288aa9f25a5aa79812b) Merge branch 'main' into arma-reforger-main - [`c697d86`](https://github.com/pelican-dev/plugins/commit/c697d863f5fe03f691acf362c10b4a2208c843a1) Merge branch 'pelican-dev:main' into main - [`f042ae1`](https://github.com/pelican-dev/plugins/commit/f042ae1be1dc6cedde961195fb736f4b7874a261) fix: correct string interpolation in mod notifications - [`408ae7a`](https://github.com/pelican-dev/plugins/commit/408ae7a4bea572959505cfd81d1331f172cdaae5) eliminate n+1 calls - [`8befb7b`](https://github.com/pelican-dev/plugins/commit/8befb7b86d1b709db97f76a0fd33a49938ab6590) fix pint - [`4e6ca23`](https://github.com/pelican-dev/plugins/commit/4e6ca2323776d3acfcc176efc0b137c62b856998) use localization strings instead of hardcoded texts - [`b47ada7`](https://github.com/pelican-dev/plugins/commit/b47ada7dbb5872d90c69e122514e6c63e6540964) enhance mod enrichment with concurrent requests and caching ### 📊 Changes **8 files changed** (+1109 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `arma-reforger-workshop/README.md` (+57 -0) ➕ `arma-reforger-workshop/lang/en/arma-reforger-workshop.php` (+60 -0) ➕ `arma-reforger-workshop/plugin.json` (+17 -0) ➕ `arma-reforger-workshop/src/ArmaReforgerWorkshopPlugin.php` (+23 -0) ➕ `arma-reforger-workshop/src/Facades/ArmaReforgerWorkshop.php` (+29 -0) ➕ `arma-reforger-workshop/src/Filament/Server/Pages/ArmaReforgerWorkshopPage.php` (+361 -0) ➕ `arma-reforger-workshop/src/Filament/Server/Pages/BrowseWorkshopPage.php` (+230 -0) ➕ `arma-reforger-workshop/src/Services/ArmaReforgerWorkshopService.php` (+332 -0) </details> ### 📄 Description Hi, i created plugin for managing mods for Arma Reforger. The plugin is mainly vibe-coded (because of my poor php knowledge), so free to suggest any improvements. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Arma Reforger Workshop UI to view/manage installed mods, add/remove mods, one‑click install, installed-state indicator, open workshop in browser, and open/edit server config. * **Backend** * Service for workshop integration: fetch mod details, resolve URLs, parse workshop data, and manage server mod lists. * **Browse & Search** * Browse/search Workshop with pagination, thumbnails, mod details, table view, actions, validation and notifications. * **Caching** * Short‑TTL caching for mod details and search results. * **Documentation** * Added README describing features, requirements, configuration and caching. * **Localization** * Added English UI translations. * **Plugin** * Plugin manifest and admin panels added. <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:17:55 +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#73
No description provided.