Commit Graph

1025 Commits

Author SHA1 Message Date
Salanto
c9818a137f Websockets refactor (#26)
* Implement NetworkSocket Thin-Proxy

Removes the need for the overengineered WS-Proxy
2022-06-15 17:52:27 -05:00
Salanto
c26319701e Rework AOPacket (#24) 2022-06-15 17:52:27 -05:00
Salanto
0d41a1e8bd Prevent double or invalid HWID/ID packet (#23) 2022-06-15 17:52:27 -05:00
Salanto
70b5212640 Add per area wtce and shout disable options (#22) 2022-06-15 17:52:27 -05:00
Salanto
d82e6b8e59 Disable music change for spectator (#21)
* Disable music change for spectator

* Appease clang-format

* Properly handle this bullshit.
2022-06-15 17:52:27 -05:00
Salanto
2073371d08 Merge upstream (#15)
* Don't Display IPIDs to Users via Global Chat

Slightly better variable names too while we're at it

* Ensure /changepass always has arg 1 as the password

Otherwise, the syntax is /changepass <Password> or /changepass <Moderator> <Password>, rather than /changepass <Password> 'Moderator', like how it's specified to be

* All hail the mightly clang-format check

Co-authored-by: AwesomeAim <30537683+AwesomeAim@users.noreply.github.com>
Co-authored-by: Rosemary Witchaven <32779090+in1tiate@users.noreply.github.com>
2022-06-15 17:52:27 -05:00
Salanto
97d9c1253b Add some visual flair to readme(#14)
* Visual update to readme

* Add all contributors to repo readme

* Minor formatting

* Use the right repo for "maintained"
2022-06-15 17:52:27 -05:00
Leifa♥
f307f728c9 Added command extension system (#12)
* Added command extension system

Resolve #10

* Added akashi definitions

* Updated headers to comply to the standard

* Added full definition to argument

* Clang-format pass

* Missing header for GCC

* Missing header for GCC

* Move method implementation to source file
2022-06-15 17:52:27 -05:00
Salanto
ec44039816 Update CI with clang-format condition (#11)
* Update CI with clang-format condition

* Only run CI on either push to master or pull to master, not both
2022-06-15 17:52:27 -05:00
Leifa♥
e01f0e1c57 Changed message_floodguard logic and introduced global_message_floodguard (#8)
* Changed message_floodguard logic, ...

Resolve #3

The client individual client timer was ignored in favor of the area timer as it wouldn't make a lot of sense to have 3 different timers for game messages.

* Changed message_floodguard to only affect the area in which the message was sent rather than globally. The default value is 250ms.
* Added global_message_floodguard, this restores the previous functionality of message_floodguard. The default value is 0ms.
2022-06-15 17:52:27 -05:00
Leifa♥
657a47b029 Added flexible ACL roles (#7)
Resolve #4
2022-06-15 17:52:27 -05:00
Leifa♥
b0555207d6 Privatization rework (#2)
* Add clang-format

* Multiple privatization changes

"Participation handshake" this refers to the moment that the user's client sends the `askchaa` packet.

* Server::m_clients is now private. Get a copy with Server::getClients()
* Server::m_player_count is now private. Get a copy with Server::getPlayerCount() (Additional logic was added to handle the player count.)
* AOClient::m_joined is now private. Get a copy with AOClient::hasJoined()
* Added signal AOClient::joined(); will be emitted when the client first complete the participation handshake.
* Renamed Server::updatePlayerCount to Server::playerCountUpdated

* Privatized Server

* Made Server members private: m_characters, m_areas, m_area_names
* Added Server methods: getCharacters(), getAreas(), getAreaById(f_area_id), getAreaByName(f_area_name), getAreaNames(), getAreaName(f_area_id), getMusicList
* Added Server helper methods: getCharacterCount(), getAreaCount()
- This reduce code repetition of the following example: server->getCharacters().length(), server->getAreas().size()

* Solved other merge conflicts

* Added Server methods, various fixes

* Added Server methods: getCharacterById(f_chr_id)
* Various optimizations

* More Server privatization changes

* Made Server members private: db_manager, next_message_timer, can_send_ic_messages
* Renamed Server members:
  * next_message_timer -> m_message_floodguard_timer
  * can_send_ic_message -> m_can_send_ic_message
Added Server methods: getDatabaseManager, isMessageAllowed, startMessageFloodguard(f_duration)
Made Server methods private: allowMessage

* Added new fields to load for AreaData

* Added fields: `area_message` (default: empty string) and `send_area_message_on_join` (default: false)

* Added Server::clearAreaMessage

* Cleaned up headers include (AOPacket excluded)

* Removed most project file includes, moved to source file (cpp)
  * AOPacket was excluded because some methods modify the copy

* Fix compile error when using MingW compiler

* Appease clang by using proper or and putting it in parentheses
* Remove extra semicolon
2022-06-15 17:52:27 -05:00
Rosemary Witchaven
2e7ad02bc3
Merge pull request #269 from AttorneyOnline/remove-cross-area-pair
Fix paired player check behaviour
2022-05-29 13:02:56 -05:00
Salanto
c1451b6b15 Fix pair lookup
* Fixes incorrect lookup where the server would try to pair a user with another user outside the current users area.
2022-05-26 17:13:50 +02:00
Rosemary Witchaven
87c898fa26
Merge pull request #268 from AttorneyOnline/the-infinite-cm
If user ID is already area owner, don't add it again
2022-05-26 09:39:40 -05:00
Salanto
b98f7b88bb Fix double CM bug
* Add check to see if owner tries to add an ID that is already owner of the area, to the owners of the area.
2022-05-26 14:29:34 +02:00
Salanto
604815750a
Add OpenSSL to Windows CI (#263)
* Add OpenSSL deployment to Windows Action
2022-05-19 17:40:53 -05:00
Salanto
488c9d8754
Fix Discord Webhook not working unless webhook_color has a value in the config (#262)
* Set default properly

If this slight hack is not done, Akashi may load an empty color code, causing Discord to reject the Webhook due to an empty value.
2022-05-17 13:28:07 -05:00
Rosemary Witchaven
f363a7d876
Merge pull request #261 from AttorneyOnline/better-modcall-msg
Improve the modcall message to be more visible and include more information
2022-05-14 21:25:33 -05:00
in1tiate
69e6c1f32a improve modcall message 2022-05-14 21:23:55 -05:00
Rosemary Witchaven
eab5c992f3
Merge pull request #259 from AwesomeAim/changepass_order
Ensure /changepass always has arg 0 as the password
2022-05-06 02:26:58 -05:00
AwesomeAim
79c6e5e395
Ensure /changepass always has arg 1 as the password
Otherwise, the syntax is /changepass <Password> or /changepass <Moderator> <Password>, rather than /changepass <Password> 'Moderator', like how it's specified to be
2022-05-05 22:58:56 -07:00
Salanto
045a354137
Merge pull request #258 from AwesomeAim/master
Don't Display IPIDs to Users via Global Chat
2022-05-05 20:29:11 +02:00
AwesomeAim
8859f35fcd
Don't Display IPIDs to Users via Global Chat
Slightly better variable names too while we're at it
2022-05-05 11:16:51 -07:00
Salanto
56b5348dd8
Merge pull request #253 from AttorneyOnline/no-fucky-wucky-header
Check if proxy connection is coming from an local tunnel otherwise ignore forward header
2022-03-26 19:07:07 +01:00
Salanto
02be5d8e96 Check if proxy connection is coming from an local tunnel
See comment in code for more info
2022-03-26 18:02:45 +01:00
Salanto
cf0e2eb361 Remove leftover qDebug() on websocket
You really don't need to see the ip in your server console, do you now?
2022-03-26 17:28:07 +01:00
Salanto
253821d168 Version bump to 1.6 2022-03-26 17:17:37 +01:00
Rosemary Witchaven
1d607b8180
Merge pull request #252 from MangosArentLiterature/fix-ic
Properly validate MS#% args length
2022-03-26 11:05:44 -05:00
MangosArentliterature
ec4022ed9a Properly validate MS#% args length 2022-03-26 10:52:29 -05:00
Rosemary Witchaven
0e807c8e75
Merge pull request #251 from AwesomeAim/help_please
Fix help displaying nothing if it can't find the command + loadCommandHelp variable name fixes
2022-03-22 12:17:09 -05:00
AwesomeAim
a4f93033ac Correct loadCommandHelp variable names, return if too many arguments on help, and add behaviour if no help exists 2022-03-20 21:20:47 -07:00
Rosemary Witchaven
76b6c2cfa4
Merge pull request #250 from Salanto/cf-websocket
Detect Proxyserver when a websocket connects
2022-03-20 19:31:38 -05:00
Salanto
b38a6e7ee9 Add ability to read forwarded-for header
This helps when the websockets are behind a proxyserver, like Cloudflare
2022-03-21 01:30:03 +01:00
Rosemary Witchaven
0f6b6c3c4b
Merge pull request #248 from AwesomeAim/typo
Fix typo
2022-03-18 16:34:12 -05:00
AwesomeAim
1cc9f8ed48
Fix typo
Rools card
2022-03-17 20:31:51 -07:00
Salanto
c85471d2cd
Fix #234 / Exclude stop track from alias lookup. (#245)
* Exclude ~stop.mp3 from alias lookup

* Fix auto-looping for on-join songs.
2022-03-14 18:24:47 -05:00
Rosemary Witchaven
09662620c8
Merge pull request #244 from Salanto/feature/music-on-area-join
Actually play music on areaJoin
2022-03-14 12:57:18 -05:00
Salanto
601fa10f4f Move arup below updating playercount. 2022-03-14 18:45:22 +01:00
Salanto
06aebc1f81 Actually play song on join 2022-03-14 18:44:40 +01:00
Rosemary Witchaven
1061cb287b
Merge pull request #243 from AwesomeAim/getarea
Re-add /getarea
2022-03-13 03:36:13 -05:00
AwesomeAim
aa0e14b789
Re-add /getarea
I should probably read what's going on in the files rather than a quick glance.
2022-03-12 22:09:31 -08:00
Salanto
8d3a815ca8
Fix user deletion (#240)
* Minr change to DB code, not fixed or tested yet

* Fix user deletion for good.

* Typo

* Add scoping

Code shamelessly stolen from Cerapter. Thanks for telling me how to scope.

Co-Authored-By: Cerapter <43446478+Cerapter@users.noreply.github.com>

Co-authored-by: Cerapter <43446478+Cerapter@users.noreply.github.com>
2022-03-12 23:29:04 -06:00
Rosemary Witchaven
9f6acefdef
Merge pull request #241 from Salanto/QoL/alias-getarea
Alias getarea, getareas and roll
2022-03-12 23:28:24 -06:00
Rosemary Witchaven
ba09b4d2c1
Merge pull request #242 from Salanto/feature/music-on-area-join
Send song when client joins the area.
2022-03-12 23:27:41 -06:00
Salanto
dff37687c0 Fix /play not setting the currentmusic correctly 2022-03-13 03:28:58 +01:00
Salanto
675a6faee1 Alias roll too 2022-03-12 17:44:00 +01:00
Salanto
52a48f263e Send currentply playing song to client joining the area 2022-03-12 17:26:12 +01:00
Salanto
c7ce9e8aa1 Alias getarea and getareas
GAS GAS GAS, I'M GONNA STEP ON THE GAS!
2022-03-12 15:00:43 +01:00
stonedDiscord
1e51131649
Merge pull request #236 from Salanto/fix/235
Make /getareas work like its Tsu counterpart
2022-03-11 19:47:22 +01:00