aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session
AgeCommit message (Collapse)Author
2023-05-01close inactive sessions after 10 minutesherby2212
2023-04-06Fix argument is not used in message template warningStepan Goremykin
2023-04-01Use MinBy and MaxByStepan Goremykin
2023-02-15Enable nullable for more filesBond_009
2023-01-07Use EventManager for AuthenticationSuccess, AuthenticationFailure (#8960)Cody Robibero
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-10-07Merge pull request #8503 from Bond-009/ThrowIfNullClaus Vium
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-10-06fix: use HttpContext and ClaimsPrincipal instead of IAuthorizationContextcvium
2022-09-28Remove redundant using directivesHannes Braun
2022-08-15Fix various typos luz paz
Found via `codespell -q 3 -S ./Emby.Server.Implementations/Localization -L allready,doesnt,inh,receivedfrom,whoknows`
2022-07-24Backport pull request #7732 from jellyfin/release-10.8.zJoshua Boniface
Fix to make web sockets close gracefully on server shutdown Authored-by: luke brown <luke92brown@gmail.com> Merged-by: Cody Robibero <cody@robibe.ro> Original-merge: ee22feb89a34632a4cc3a350733dd57c6be863ec
2022-06-06Merge pull request #7781 from crobibero/live-tv-infiniteCody Robibero
(cherry picked from commit 77c73e241fe1705528e3ffbb42f074c46240b9fb) Signed-off-by: crobibero <cody@robibe.ro>
2022-05-26Merge pull request #7785 from dmitrylyzo/clear-transcodinginfoCody Robibero
Clear TranscodingInfo if play method changed (cherry picked from commit c9491cf317f83012dafe17e2a40a9548993c51f0) Signed-off-by: crobibero <cody@robibe.ro>
2022-04-17Merge pull request #7605 from crobibero/playback-start-stopCody Robibero
Add missing properties to PlaybackStart, PlaybackStop (cherry picked from commit 9beb3aff4e0859aaf916e44388cbd6cbede8087f) Signed-off-by: Joshua Boniface <joshua@boniface.me>
2022-03-11Merge pull request #7346 from Bond-009/guidClaus Vium
Optimize Guid comparisons
2022-02-21Optimize Guid comparisonsBond_009
* Use Guid.Equals(Guid) instead of the == override * Ban the usage of Guid.Equals(Object) to prevent accidental boxing * Compare to default(Guid) instead of Guid.Empty
2022-01-14Fix build and clean upCody Robibero
2022-01-14Add FullNowPlayingQueue propertyFernando Fernández
2022-01-01Use IAuthorizationContext for websocketCody Robibero
2021-12-24Update StyleCopBond_009
2021-12-12Use BaseItemKind where possibleCody Robibero
2021-10-03Fix warnings in SessionManagerPatrick Barron
2021-09-06merge branch 'master' into syncplay-sessions-fixdkanada
2021-09-03Fix some warningsBond_009
2021-06-27Merge remote-tracking branch 'origin/authenticationdb-efcore' into ↵Patrick Barron
authenticationdb-efcore
2021-06-27GetDeviceOptions always returns an instance of DeviceOptionsPatrick Barron
2021-06-25Update Emby.Server.Implementations/Session/SessionManager.csPatrick Barron
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-06-23Fix issues with QuickConnect and AuthenticationDbcrobibero
2021-06-23Merge branch 'master' into authenticationdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs # Emby.Server.Implementations/Session/SessionManager.cs # Jellyfin.Server.Implementations/Security/AuthorizationContext.cs
2021-06-19Move non-jellyfin extensions to separate projectBond_009
2021-06-18Merge branch 'master' into authenticationdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/Devices/DeviceManager.cs # Emby.Server.Implementations/HttpServer/Security/SessionContext.cs # Emby.Server.Implementations/Security/AuthenticationRepository.cs # Emby.Server.Implementations/Session/SessionManager.cs # Jellyfin.Server.Implementations/Security/AuthorizationContext.cs # MediaBrowser.Controller/Library/IUserManager.cs # MediaBrowser.Controller/Net/ISessionContext.cs
2021-06-18Correctly handle devices without custom namesPatrick Barron
2021-05-28Fix some warningsBond_009
2021-05-24Merge pull request #6038 from crobibero/delete-existing-sessionsClaus Vium
Don't logout if deviceId is null
2021-05-20Migrate authentication db to EF CorePatrick Barron
2021-05-20Enable nullable reference types for Emby.Server.ImplementationsBond_009
2021-05-18Merge branch 'master' into authenticationdb-efcorePatrick Barron
# Conflicts: # Jellyfin.Api/Helpers/RequestHelpers.cs
2021-05-12Don't logout if deviceId is null.crobibero
2021-05-05Code Clean up: Convert to null-coalescing operator ?? (#5845)BaronGreenback
Co-authored-by: Cody Robibero <cody@robibe.ro> Co-authored-by: Patrick Barron <18354464+barronpm@users.noreply.github.com>
2021-04-22Mark PasswordSha1 as obsoletecrobibero
2021-04-13Don't use database for QuickConnectPatrick Barron
2021-04-10Convert UpdateUser to solely asyncPatrick Barron
2021-04-10Make device/session code asyncPatrick Barron
2021-04-10Rewrite device manager using EF CorePatrick Barron
2021-04-01Remove unused SessionManager methodsPatrick Barron
2021-03-28Fix storing outdated sessions in SyncPlayIonut Andrei Oanca
2021-02-21Minor improvementsBond_009