aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/BasePeriodicWebSocketListener.cs
AgeCommit message (Collapse)Author
2025-09-12Allow non-admin users to subscribe to their own Sessions (#13767)KGT1
2024-12-12move to new System.Threading.Lock type for better performanceDaniyar Alpyspayev
2024-04-30More efficient array creation (#11468)Bond-009
2024-03-30fix: use a reentrant lock when accessing active connections (#11256)Claus Vium
2024-03-18refactor: use Channels as queueing mechanism for periodic websocket messages ↵Claus Vium
(#11092)
2023-10-08Make files readonlyStepan Goremykin
2023-07-15Apply review suggestionsShadowghost
2023-07-07Enforce permissions on websocket connectionsShadowghost
2023-07-02Fix sending websocket messages (#9948)Cody Robibero
2023-06-29Fix Websocket OpenApi (#9935)Cody Robibero
* Further split inbound and outbound messages * Fix datatype for inbound start messages * fixes from review
2023-02-24Update MediaBrowser.Controller/Net/BasePeriodicWebSocketListener.csipitio
Co-authored-by: Cody Robibero <cody@robibe.ro>
2023-02-15Catch Exception when disposing connectionipitio
2022-12-05Replace != null with is not nullBond_009
2022-11-27Investigate some TODO commentsBond_009
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_009
Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ```
2022-01-01Use IAuthorizationContext for websocketCody Robibero
2021-08-13Fix warnings in MediaBrowser.ControllerRich Lander
2021-06-06Remove warninigs from MediaBrowser.Controller (Part 3) (#6078)Cody Robibero
Co-authored-by: Bond-009 <bond.009@outlook.com>
2021-05-07Enable nullable reference types for MediaBrowser.ControllerBond_009
2020-11-28Add missing inheritdoccvium
2020-11-28Remove circular dependency between websocket listeners and managercvium
2020-09-27Use SessionMessageType for WebSocket messagesNiels van Velzen
2020-08-22Enable TreatWarningsAsErrors for MediaBrowser.Controller in ReleaseBond_009
2020-06-16Merge pull request #3343 from telans/comment-stopsBond-009
Add full stop at end of comments (SA1629)
2020-06-16fix SA1513/SA1516telans
2020-06-16Add full stop at end of comments (SA1629)telans
2020-06-14Merge pull request #3336 from telans/specific-fixesAnthony Lavado
Fix trivial SA1005, SA1111, SA1508, SA1510 warnings
2020-06-15Merge pull request #3315 from crobibero/dashboard-updatedkanada
Add MessageId to websocket message, fix ws exception
2020-06-15fix SA1005telans
2020-06-11Add MessageId to websocket message, add JsonNonStringKeyDictionaryConvertercrobibero
2020-06-05Use typed logger where possiblecrobibero
2020-05-25Fix some 'bugs' flagged by sonarcloudBond_009
2020-05-02Merge branch 'master' into websocketBond_009
2020-02-04Fix some warnings in MediaBrowser.ControllerBond_009
2020-01-13Remove dead code and improve loggingBond-009
2020-01-13Rewrite WebSocket handling codeBond_009
2019-03-25Lower the amount of running tasksBond_009
2019-03-05Don't dispose the connectionClaus Vium
2019-02-27Simplify websocket listenersClaus Vium
2019-02-27Fix websocketsClaus Vium
2019-02-05Remove custom ThreadingClaus Vium
2019-01-13ReSharper Reformat: Properties to expression bodied form.Erwin de Haan
2019-01-13Visual Studio Reformat: MediaBrowser.ControllerErwin de Haan
2019-01-11Merge branch 'dev' into code-cleanupErwin de Haan
2019-01-10Mayor code cleanupErwin de Haan
Add Argument*Exceptions now use proper nameof operators. Added exception messages to quite a few Argument*Exceptions. Fixed rethorwing to be proper syntax. Added a ton of null checkes. (This is only a start, there are about 500 places that need proper null handling) Added some TODOs to log certain exceptions. Fix sln again. Fixed all AssemblyInfo's and added proper copyright (where I could find them) We live in *current year*. Fixed the use of braces. Fixed a ton of properties, and made a fair amount of functions static that should be and can be static. Made more Methods that should be static static. You can now use static to find bad functions! Removed unused variable. And added one more proper XML comment.
2019-01-07remove trailing whitespacehawken
2018-12-30Fix build post GPL changeBond_009
2018-12-30Fix exception loggingBond_009
2018-12-30Use Microsoft.Extensions.Logging abstractionBond_009
2018-12-27Add GPL modulesAndrew Rabert