From 005490b5a0e3c6b50ac8ab9ab790fa5186fcfd4b Mon Sep 17 00:00:00 2001
From: Betsy Castro <5490820+betsyecastro@users.noreply.github.com>
Date: Fri, 15 May 2026 14:50:51 -0500
Subject: [PATCH 1/3] Add filename length validation rule for image uploads
---
.../Requests/Concerns/HasImageUploads.php | 11 ++++++--
app/Rules/FilenameLengthRule.php | 25 +++++++++++++++++++
2 files changed, 34 insertions(+), 2 deletions(-)
create mode 100644 app/Rules/FilenameLengthRule.php
diff --git a/app/Http/Requests/Concerns/HasImageUploads.php b/app/Http/Requests/Concerns/HasImageUploads.php
index 305dc321..082a2c9b 100644
--- a/app/Http/Requests/Concerns/HasImageUploads.php
+++ b/app/Http/Requests/Concerns/HasImageUploads.php
@@ -2,14 +2,21 @@
namespace App\Http\Requests\Concerns;
+use App\Rules\FilenameLengthRule;
+
trait HasImageUploads
{
- public function uploadedImageRules(): string
+ public function uploadedImageRules(): array
{
$max_filesize = $this->maxFilesize() * 1000;
$allowed_mimes = implode(',', $this->supportedMimes());
- return "mimes:$allowed_mimes|min:1|max:$max_filesize";
+ return [
+ "mimes:{$allowed_mimes}",
+ "min:1",
+ "max:{$max_filesize}",
+ new FilenameLengthRule(maxLength: 200),
+ ];
}
public function uploadedImageMessages(string $rule): string
diff --git a/app/Rules/FilenameLengthRule.php b/app/Rules/FilenameLengthRule.php
new file mode 100644
index 00000000..574f309f
--- /dev/null
+++ b/app/Rules/FilenameLengthRule.php
@@ -0,0 +1,25 @@
+getClientOriginalName();
+
+ if (strlen($name) > $this->maxLength) {
+ $fail("The :attribute filename must not exceed {$this->maxLength} characters.");
+ }
+ }
+}
\ No newline at end of file
From 59082978f2d1e10067fbeb5e1eb31732321c0e76 Mon Sep 17 00:00:00 2001
From: Betsy Castro <5490820+betsyecastro@users.noreply.github.com>
Date: Fri, 15 May 2026 14:51:41 -0500
Subject: [PATCH 2/3] Add image requirements tooltip for profile and banner
images
---
resources/views/profiles/edit/information.blade.php | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/resources/views/profiles/edit/information.blade.php b/resources/views/profiles/edit/information.blade.php
index ba3c214a..6e75afdb 100644
--- a/resources/views/profiles/edit/information.blade.php
+++ b/resources/views/profiles/edit/information.blade.php
@@ -6,6 +6,12 @@
+ Image requirements
+
-