Commit Graph

254 Commits

Author SHA1 Message Date
Salanto
777132e698 Disable chat deskmod 2022-06-18 10:01:47 -05:00
Salanto
97528e641c Expand kick_other to consider the hwid 2022-06-17 22:49:24 -05:00
Salanto
c79cdf3a4c Don't run the disconnect routine twice, Salanto
I should not be allowed to code this late
2022-06-15 17:52:27 -05:00
Salanto
883ac90511 Fix segfault due to insufficient jukebox state validation. 2022-06-15 17:52:27 -05:00
Salanto
5e6bc5c87b Run disconnection routine when client is being destroyed 2022-06-15 17:52:27 -05:00
Salanto
5cea6674c9 Add jukebox skip command
* Prevents the jukebox being locked up by long playing songs without any way to skip it
2022-06-15 17:52:27 -05:00
Salanto
e80f452352 Fix empty IP on TCP connections
Dangerous oversight!
2022-06-15 17:52:27 -05:00
Salanto
6d848682f6 Remove unused include in AOClient 2022-06-15 17:52:27 -05:00
Salanto
164a1789d0 Add /kick_other command
* closes #239
2022-06-15 17:52:27 -05:00
Salanto
20be237daf Mark UserID free on regular disconnect
* Fixes userID inflation bug where it would incorrectly mark freed IDs as still used.
2022-06-15 17:52:27 -05:00
Salanto
d39f93926f Enable websocket port overwrite in advertiser
*Advertises port 80 if the AO Server is behind a reverse proxy, like cloudflare tunnels.
2022-06-15 17:52:27 -05:00
Salanto
bbd55263df Update configuration DB
This prevents a lockout scenario where the root user may be left without permissions if the DB was created prior to this PR.
2022-06-15 17:52:27 -05:00
Salanto
a2c769f173 Finish desturctor, fix localhost lookup 2022-06-15 17:52:27 -05:00
Salanto
a47e120ff4 Resolve parenting issues
This should FINALLY resolve the QIODevice errors as closing the socket now lets Qt handle all the network and socket state management.
2022-06-15 17:52:27 -05:00
Salanto
16955e9c16 Apply suggestion
* Put QSettings check in helper function
* Removed stray QDebug()
* Fixed wording on command message.
*Update commandhelp
2022-06-15 17:52:27 -05:00
Salanto
75472c6fad Consistent key/argument
* layout in command_extensions.ini
2022-06-15 17:52:27 -05:00
Salanto
d0c22ee879 Missed one
Co-authored-by: Rosemary Witchaven <32779090+in1tiate@users.noreply.github.com>
2022-06-15 17:52:27 -05:00
Salanto
9090d150b0 Batch commit spelling corrections
Co-authored-by: Rosemary Witchaven <32779090+in1tiate@users.noreply.github.com>
2022-06-15 17:52:27 -05:00
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
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
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
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
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
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
in1tiate
69e6c1f32a improve modcall message 2022-05-14 21:23:55 -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
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
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
MangosArentliterature
ec4022ed9a Properly validate MS#% args length 2022-03-26 10:52:29 -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
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
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
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
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