]> git.smokeofanarchy.ru Git - space-station-14.git/commit
Added button and manager for in game bug reports (Part 1) (#35350)
authorbeck-thompson <107373427+beck-thompson@users.noreply.github.com>
Fri, 15 Aug 2025 16:10:38 +0000 (09:10 -0700)
committerGitHub <noreply@github.com>
Fri, 15 Aug 2025 16:10:38 +0000 (09:10 -0700)
commita8d6dbc3241c880f846a7abba8bd330788df9fc1
tree7841d066d3724d3652291d7114faad4d8e59baf3
parent890ac9f64582329b61be307f4080cff3e66a4236
Added button and manager for in game bug reports (Part 1) (#35350)

* Added the button and manager

* Minor cleanup

* Reigstered to the wrong thing!

* Unload UI

* Address the review

* First commit :)

* Some cleanup

* Added some comments and now the placehoder text goes away once you start typing

* Some cleanup and better test command

* Basic rate limiter class (Not finished)

* Cleanup

* Removed forgotten comment xD

* Whitespace removal

* Minor cleanup, cvar hours -> minutes

* More minor tweaks

* Don't cache timer and add examples to fields

* Added CCvar for time between bug reports

* Minor crash when restarting rounds fixed

* It compiled on my computer!

* Fix comment indents

* Remove unecessary async, removed magic strings, simplfied sawmill to not use post inject

* Make struct private

* Simplfiy TryGetLongHeader

* Changed list to enumerable

* URI cleanup

* Got rid of the queue, used a much better way!

* Made the comments a little better and fix some issues with them

* Added header consts

* Maximum reports per round is now an error message

* Time between reports is now in seconds

* Change ordering

* Change hotkey to O

* only update window when its open

* Split up validation

* address review

* Address a few issues

* inheritance fix

* API now doesn't keep track of requests, just uses the rate limited response from github

* Rough idea of how channels would work

* refactor: reorganized code, placed rate limiter into http-client-handler AND manager (usually only manager-one should work)

* cleanup

* Add user agent so api doesn't get mad

* Better error logs

* Cleanup

* It now throws!

* refactor: renaming, moved some methods, xml-doc cleanups

* refactor: BugReportWindow formatted to convention, enforced 1 updates only 1 per sec

* Add very basic licence info

* Fixed the issues!

* Set ccvar default to false

* make the button better

* fix test fail silly me

* Adress the review!

* refactor: cleanup of entry point code, binding server-side code with client-facing manager

* Resolve the other issues and cleanup and stuff smile :)

* not entity

* fixes

* Cleanup

* Cleanup

* forgor region

* fixes

* Split up function and more stuff

* Better unsubs yaygit add -A

* I pray...

* Revert "I pray..."

This reverts commit 9629fb4f1289c9009a03e4e4facd9ae975e6303e.

* I think I have to add it in the pr

* Revert "I think I have to add it in the pr"

This reverts commit e185b42f570fe5f0f51e0e44761d7938e22e67f7.

* Tweaks

* Minor tweak to permissions

---------

Co-authored-by: pa.pecherskij <pa.pecherskij@interfax.ru>
37 files changed:
Content.Client/UserInterface/Systems/BugReport/BugReportUIController.cs [new file with mode: 0644]
Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml [new file with mode: 0644]
Content.Client/UserInterface/Systems/BugReport/Windows/BugReportWindow.xaml.cs [new file with mode: 0644]
Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs
Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml
Content.Server/BugReports/BugReportManager.cs [new file with mode: 0644]
Content.Server/BugReports/IBugReportEvents.cs [new file with mode: 0644]
Content.Server/BugReports/IBugReportManager.cs [new file with mode: 0644]
Content.Server/Entry/EntryPoint.cs
Content.Server/GameTicking/GameTicker.RoundFlow.cs
Content.Server/GameTicking/GameTicker.cs
Content.Server/Github/Commands/TestGithubApiCommand.cs [new file with mode: 0644]
Content.Server/Github/GithubApiManager.cs [new file with mode: 0644]
Content.Server/Github/GithubBackgroundWorker.cs [new file with mode: 0644]
Content.Server/Github/GithubClient.cs [new file with mode: 0644]
Content.Server/Github/Requests/CreateIssueRequest.cs [new file with mode: 0644]
Content.Server/Github/Requests/IGithubRequest.cs [new file with mode: 0644]
Content.Server/Github/Requests/InstallationsRequest.cs [new file with mode: 0644]
Content.Server/Github/Requests/TokenRequest.cs [new file with mode: 0644]
Content.Server/Github/Responses/InstallationResponse.cs [new file with mode: 0644]
Content.Server/Github/Responses/TokenResponse.cs [new file with mode: 0644]
Content.Server/Github/RetryHttpHandler.cs [new file with mode: 0644]
Content.Server/IoC/ServerContentIoC.cs
Content.Shared.Database/LogType.cs
Content.Shared/BugReport/BugReportMessage.cs [new file with mode: 0644]
Content.Shared/CCVar/CCVars.BugReports.cs [new file with mode: 0644]
Content.Shared/CCVar/CCVars.Github.cs [new file with mode: 0644]
Resources/Locale/en-US/HUD/game-hud.ftl
Resources/Locale/en-US/bugreport/bug-report-report.ftl [new file with mode: 0644]
Resources/Locale/en-US/bugreport/bug-report-window.ftl [new file with mode: 0644]
Resources/Locale/en-US/github/github-api.ftl [new file with mode: 0644]
Resources/Textures/Interface/bug.svg [new file with mode: 0644]
Resources/Textures/Interface/bug.svg.192dpi.png [new file with mode: 0644]
Resources/Textures/Interface/bug.svg.192dpi.png.yml [new file with mode: 0644]
Resources/Textures/Interface/splat.svg [new file with mode: 0644]
Resources/Textures/Interface/splat.svg.192dpi.png [new file with mode: 0644]
Resources/Textures/Interface/splat.svg.192dpi.png.yml [new file with mode: 0644]