Commit graph

47 commits

Author SHA1 Message Date
60a5fb6804 Fixed leaderboard name not retaining the leading 0. 2023-08-31 00:54:17 +00:00
60e33edce9 Append total posts count at the end of the leaderboard. 2023-08-31 00:52:14 +00:00
9911c51d9b Count profile stats using Index database backend. 2023-08-31 00:24:59 +00:00
2ea1018123 Added shitty search hack to users class. 2023-08-31 00:19:20 +00:00
2603a597df Added targeted permission recalculation.
Reduces reliance on full recalculation and actually makes it viable to do from within the browser.
2023-08-30 23:56:33 +00:00
c724c02c66 Moved validation methods into the new Users class. 2023-08-30 23:41:44 +00:00
349cc237c5 Rewrote permissions system. 2023-08-30 22:37:21 +00:00
99cc05f991 Fixed topic type string usage. 2023-08-28 01:41:13 +00:00
265399d343 Rewrote forum backend. 2023-08-28 01:17:34 +00:00
4f56427501 Fixed error 500 when trying to log in to a non-existing user. 2023-08-06 18:22:39 +00:00
f394f372c1 Made data source argument lists for News, Changelog, Comments and Emotes consistent with the rest. 2023-08-05 13:50:15 +00:00
758a052191 Fixed forum post deletion and editing. 2023-08-04 22:49:09 +00:00
c1bf19bc12 Converted all Misuzu style route handlers to Index style ones. 2023-08-04 20:51:02 +00:00
761fdb7f80 Fixed error 500 when viewing profiles as guest. 2023-08-04 17:44:37 +00:00
0a0e882950 Fixed search and updated collations of various fields to more appropriate ones. 2023-08-03 12:40:37 +00:00
b08de04b07 Fixed issue caused by used of dangling variable on sessions page. 2023-08-03 01:43:43 +00:00
9ae2a6a39b Changed the way msz_auth is handled.
Going forward msz_auth is always assumed to be present, even while the user is not logged in.
If the cookie is not present a default, empty value will be used.
The msz_uid and msz_sid cookies are also still upconverted for some reason but are no longer removed even though there's no active sessions that can possibly have those anymore.
As with the previous change, shit may be broken so report any Anomalies you come across, through flashii-issues@flash.moe if necessary.
2023-08-03 01:35:08 +00:00
e000c21987 Rewrote the user information class.
This one took multiple days and it pretty invasive into the core of Misuzu so issue might (will) arise, there's also some features that have gone temporarily missing in the mean time and some inefficiencies introduced that will be fixed again at a later time.
The old class isn't gone entirely because I still have to figure out what I'm gonna do about validation, but for the most part this knocks out one of the "layers of backwards compatibility", as I've been referring to it, and is moving us closer to a future where Flashii actually gets real updates.
If you run into anything that's broken and you're inhibited from reporting it through the forum, do it through chat or mail me at flashii-issues@flash.moe.
2023-08-02 22:12:47 +00:00
99353c4e70 Added server side stuff for Satori hooks. 2023-07-29 22:18:20 +00:00
d90d734c90 Some TOTP touch-ups. 2023-07-29 20:18:41 +00:00
9449af30ef Removed permissions stuff from the User object. 2023-07-29 18:15:30 +00:00
8a63906bdb Removed HasRankInterface. 2023-07-29 17:31:43 +00:00
4a59be7d9d Emit audit log upon impersonation. 2023-07-28 23:23:45 +00:00
cb40f1efce Added counters table for storing numbers of things statically. 2023-07-28 23:17:37 +00:00
35598a01a8 Allow non-super users to impersonate select users. 2023-07-28 21:20:19 +00:00
10ec424a4f Rewrote Sessions backend. 2023-07-28 20:06:12 +00:00
9dbfb0a396 Rewrote user role handling. 2023-07-27 23:26:05 +00:00
d2db06d0e4 Fixed data export. 2023-07-27 13:14:32 +00:00
5022222162 Pluralise user role relations table name. 2023-07-27 13:09:22 +00:00
25c87ada6b Rewrote TFA session code. 2023-07-27 12:44:50 +00:00
1d26871bc6 Fixed the manage index statistics causing a 500 because the old warnings table is Gone. 2023-07-26 22:57:03 +00:00
d31cc70128 Rewrote user warnings backend. 2023-07-26 22:43:50 +00:00
60cc6643a0 Added new banning system.
it actually works and isn't confusing this time around!
2023-07-26 18:19:48 +00:00
42560a62e6 Pluralise. 2023-07-26 11:56:06 +00:00
eb30b6b718 Fixed error 500 when trying to view a non-existent profile. 2023-07-25 15:03:25 +00:00
26d5abffe5 Allow moderators to view a stripped down version of the user page in the broom closet. 2023-07-25 14:52:51 +00:00
96f9ea7271 Added new moderator notes system. 2023-07-25 14:40:31 +00:00
8c52338751 Removed the concept of silencing.
Nothing really implemented it properly or checked for it and the places that did check just handled it as a slightly softer ban.
It's pretty obvious that the existence of this feature was directly taken from osu! where the differentation between a ban and a silence probably makes more sense, though even there Silences are just non-permanent bans, so like why does this exist lol?
Well, it doesn't anymore! Hopefully chat will upgrade successfully because I let it get 18 commits behind :D
2023-07-23 21:47:15 +00:00
f382e1f210 Attempt 2 at fixing the profile fields issue (this one actually fixes the issue!) 2023-07-22 21:25:51 +00:00
1dffd30136 Rewrote password recovery token storage using new DB backend. 2023-07-22 21:20:03 +00:00
033abfd150 Fixed error 500 on profiles when filling certain fields in specific conditions. 2023-07-22 20:54:52 +00:00
a894db2052 Rewrite login attempts log to use new database backend. 2023-07-22 16:37:57 +00:00
20c528a88c Normalised custom exception usage in user classes.
Also updated the Index library to include the MediaType fix.
2023-07-22 15:02:45 +00:00
1094f8dc67 Fixed error 500 on logs and sessions pages because of dead library. 2023-07-21 11:33:27 +00:00
d870a386cf Improved profile fields code. 2023-07-20 19:36:43 +00:00
f5d8914991 Removed lockdown feature for now. 2023-07-19 19:04:57 +00:00
a09c8b7ef6 Restructured public folder and initialisation process. 2023-07-19 19:03:53 +00:00