HDVinnie
16e6ef4fb5
add: internal stats
2024-07-08 00:08:28 -04:00
HDVinnie
19b172f397
update: transaction controller
...
- Like the logic for sending invites. If invites are in restricted mode, dont allow a non whitelisted group to buy invites from the store.
2024-07-03 21:31:52 -04:00
HDVinnie
a590766ac1
Merge pull request #3961 from Roardom/safer-whitelisted-urls
...
(Update) don't match `.` with `*` using whitelisted image domain syntax
2024-07-03 21:26:23 -04:00
HDVinnie
76b50f05f0
Merge pull request #3962 from Roardom/faster-quick-search
...
(Update) Make quick search faster
2024-07-03 21:26:11 -04:00
HDVinnie
2ab4cb977c
Merge pull request #3960 from Roardom/fix-comparison-double-html-encoding
...
(Fix) Double url encoding in bbcode comparison
2024-07-03 21:25:44 -04:00
HDVinnie
a1b97c8364
Merge pull request #3959 from Roardom/fix-new-request-bounty-notification
...
(Fix) `bounty->request` relationship
2024-07-03 21:25:27 -04:00
HDVinnie
29e0678983
Merge pull request #3958 from Roardom/fix-playlist-filter
...
(Fix) Torrent search playlist filter
2024-07-03 11:40:16 -04:00
HDVinnie
516895097b
Merge pull request #3957 from Roardom/fix-report-staff-read
...
(Fix) Mark staff report replies as read automatically
2024-07-03 11:39:48 -04:00
Jay
2ac770746a
(Add) Active and inactive uploader staff view ( #3824 )
...
Co-authored-by: HDVinnie <hdinnovations@protonmail.com >
2024-07-03 11:38:11 -04:00
Roardom
9c920440b5
update: make quick search faster
...
Reduce the debounce time when searching. Cache the results for the first 3 characters typed (searches with few characters seem to take mysql longer compared to searches with more characters).
2024-07-03 11:35:15 +00:00
Roardom
b73f1d5a6f
update: don't match . with * using whitelisted image domain syntax
...
It's too easy for sysops to add `https://*imgur.com/ **` instead of properly adding `https://*.imgur.com/ **` or even better, `https://i.imgur.com/ **`. This makes it easier to spot errors in the syntax errored since the intended whitelisted domain won't work. Add some more documentation to encourage safe practices and add example evil URLs that are permitted by the bypass for visual feedback of what is allowed.
2024-07-03 06:35:35 +00:00
Roardom
e5bcf106d9
fix: double url encoding in bbcode comparison
...
The url is already sanitized and ran through `htmlspecialchars` at the end of the `sanitizeUrl` function. When using `{{ }}`, laravel runs the url through `htmlspecialchars` a second time, which breaks the url. Since the url is already properly sanitized, we can safely display the data without escaping in blade a second time.
2024-07-03 05:19:48 +00:00
Roardom
44240d81fb
fix: bounty->request relationship
...
The foreign key isn't the standard name, so we have to customize it, otherwise our relations return `null`.
2024-07-02 21:57:57 +00:00
Roardom
fdf272122c
fix: torrent search playlist filter
...
We need to filter the given columns on the `playlists` table, not the `playlist_torrent` table.
2024-07-02 21:42:49 +00:00
Roardom
11257ae7a0
fix: mark staff report replies as read automatically
2024-07-02 21:14:03 +00:00
HDVinnie
ddea582f1f
Merge pull request #3956 from Roardom/fix-system-messages
...
(Fix) Send system messages from system instead of user
2024-07-02 17:13:18 -04:00
HDVinnie
4094572c46
(Add) Request #3646 ( #3954 )
2024-07-02 17:12:22 -04:00
Roardom
8c08356fe1
fix: send system messages from system instead of user
2024-07-02 21:08:54 +00:00
HDVinnie
8723e234f5
Merge pull request #3955 from MiM-MiM/moderation_message
...
(Update) Moderation Private Message
2024-07-02 00:28:25 -04:00
MiM-MiM
af3c6e4ed3
Update: Moderation comment
...
- Removed app.url handled by bbcode parser.
- Changed to single quote strings for parts without escape characters (newlines).
2024-07-01 16:11:03 -04:00
MiM-MiM
1dce66e5d9
Update: Moderation Private Message
...
- Fix: Spacing typo.
- Fix: Set sender as read=true.
- Update: Add the URL to the message.
- Update: Add a quote tag around the staff message.
2024-07-01 12:03:03 -04:00
HDVinnie
2c0a4794cc
Merge pull request #3952 from costaht/master
...
(FIX) Appending missing colon to the function privmsg
2024-06-29 23:35:51 -04:00
costaht
05759e98c1
Appending colon to the function privmsg instead of the body message
2024-06-27 13:52:41 -03:00
costaht
a8e1167c1e
Removing delimiter from the message body
2024-06-27 13:51:35 -03:00
HDVinnie
7f39756dbb
Merge pull request #3951 from Roardom/mail-limiter
...
(Add) Outbound mail rate limiter
2024-06-27 11:31:25 -04:00
Roardom
a7159d7c9f
add: outbound mail rate limiter
2024-06-27 09:02:47 +00:00
Roardom
fd270524d7
remove: unused activation mails
...
Dead code.
2024-06-27 07:55:29 +00:00
HDVinnie
109991a4b4
Merge pull request #3949 from Roardom/fix-docker-compose
...
(Fix) Remove version from `docker-compose.yml`
2024-06-26 20:47:40 -04:00
HDVinnie
188bff1ee2
Merge pull request #3948 from Roardom/fix-comments
...
(Fix) Comments disappear after replying
2024-06-26 20:47:20 -04:00
HDVinnie
60ba6a3270
Merge pull request #3947 from Roardom/topnav-dropdown-downloads
...
(Add) My downloads menu item to top nav dropdown
2024-06-26 20:46:47 -04:00
HDVinnie
3214000ca7
Merge pull request #3950 from costaht/master
...
(Fix) IRC Bot PRIVMSG prefix missing
2024-06-26 19:47:17 -04:00
costaht
d726969b47
PRIVMSG prefix missing
...
Formatting in accordance with RFC 1459
2024-06-26 20:24:41 -03:00
Roardom
ca67cd9e94
fix: remove version from docker-compose.yml
...
This key is deprecated and no longer means anything. Fixes the following deprecation warning when running sail commands:
```
WARN[0000] /[...]/UNIT3D-Community-Edition/docker-compose.yml: `version` is obsolete
```
2024-06-26 08:01:05 +00:00
Roardom
5a35684792
Revert "update: use eager loading for comment children existence"
...
This reverts commit 4f91acbc19 .
2024-06-26 07:48:21 +00:00
Roardom
fe41c06e2b
Revert "fix: comment replies"
...
This reverts commit 03f3c63461 .
2024-06-26 07:48:13 +00:00
Roardom
ffdc9c7be6
add: my downloads menu item to top nav dropdown
2024-06-26 07:44:27 +00:00
HDVinnie
7e759088da
update: random-media blade
...
- open similar in new tab
2024-06-25 15:55:41 -04:00
HDVinnie
836857ad5d
update: composer dependencies
2024-06-25 15:54:52 -04:00
HDVinnie
370ef33f5f
update: .gitignore
2024-06-25 15:54:22 -04:00
HDVinnie
1dd8b305ce
update: .gitignore
2024-06-25 15:50:26 -04:00
HDVinnie
132f945468
update: mysql-schema.sql
...
- new dump
2024-06-25 15:49:54 -04:00
HDVinnie
29bf067d9a
Merge pull request #3944 from Roardom/user-group-announce
...
(Fix) Consistently upsert user into external announce on group change
2024-06-24 07:18:49 -04:00
Roardom
6d729fee16
fix: consistently upsert user into external announce on group change
2024-06-24 02:50:33 +00:00
HDVinnie
700829fc0e
Merge pull request #3945 from Roardom/prewarned_at
...
(Update) Save prewarned timestamp
2024-06-23 22:48:32 -04:00
Roardom
14cb175a4e
update: save prewarned timestamp
...
Allows users to more easily see when they were prewarned in case they no longer have their notification.
It was decided to discard previous prewarn values and have the system prewarn users again if applicable.
It was decided that keeping the history of prewarn values wasn't valuable for this migration.
2024-06-23 23:52:22 +00:00
HDVinnie
9984b4f4b0
Merge pull request #3942 from Roardom/fix-group-requirements-age
...
(Fix) Group requirements showing wrong age
2024-06-23 13:25:25 -04:00
HDVinnie
9182121ce7
Merge pull request #3937 from HDInnovations/PHPStan-Errors
...
(Fix) PHPStan Errors
2024-06-23 13:25:06 -04:00
HDVinnie
c4bb03d9c2
update: phpstan.neon
...
- add routes back
2024-06-23 13:19:28 -04:00
HDVinnie
9cbeb30ad1
revert: chat changes
2024-06-23 13:05:24 -04:00
HDVinnie
5ca88559e6
update: livewire components
...
- more phpstan fixes
2024-06-23 13:00:31 -04:00