aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations
AgeCommit message (Collapse)Author
2023-08-21Reduce log spam on failed loginsBond_009
Failed logins already get logged higher up the call chain
2023-07-29Apply review suggestionsShadowghost
2023-07-07Apply suggestions from code reviewShadowghost
Co-authored-by: Cody Robibero <cody@robibe.ro>
2023-07-07Add item id to playback start/stop eventsShadowghost
2023-07-07Add wrapper object for authentication event informationShadowghost
2023-06-28Use RegexGenerator where possibleBond_009
2023-05-29Merge pull request #9821 from cvium/admin_must_have_pwCody Robibero
2023-05-26refactor: admin users must have a non-empty passwordcvium
2023-05-26chore: add db migrationscvium
2023-05-26chore: deprecate EasyPassword as it isn't very securecvium
2023-04-06Remove unused using directivesStepan Goremykin
2023-02-17Reduce string allocations by regexBond_009
2023-02-13Add permission for collection managementShadowghost
2023-02-12Merge pull request #9253 from Bond-009/nullrefBond-009
2023-02-11Merge pull request #9139 from Jpuc1143/tag-whitelistBond-009
2023-02-04Return NotFound when itemId isn't foundBond_009
2023-02-04Use Directory.Packages.props (#9135)Zoltan Csizmadia
Co-authored-by: Zoltan Csizmadia <CsizmadiaZ@valassis.com>
2023-02-03chore(deps): update dependency efcoresecondlevelcacheinterceptor to v3.8.3 ↵renovate[bot]
(#9243) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-20Add "Allowed Tags" to Parental ControlsJpuc1143
2023-01-18chore(deps): update dependency microsoft.codeanalysis.bannedapianalyzers to ↵renovate[bot]
v3.3.4 (#9117) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-16Use default ASP.NET Core logger factory for DbContext factoryPatrick Barron
2023-01-16Rename JellyfinDb to JellyfinDbContextPatrick Barron
2023-01-16Document JellyfinDbPatrick Barron
2023-01-16Specify AsSplitQuery in initial users queryPatrick Barron
2023-01-16Optimize EF Core queries and remove unnecessary AsQueryable callsPatrick Barron
2023-01-16Enable nullable for Jellyfin DbContextPatrick Barron
2023-01-16Use file-scoped namespace in db contextPatrick Barron
2023-01-16Remove unused schemaPatrick Barron
2023-01-11Fix all warnings in Jellyfin.Server.ImplementationsBond_009
2023-01-10chore(deps): update dotnet monorepo to v7.0.2renovate[bot]
2023-01-10chore(deps): update dependency efcoresecondlevelcacheinterceptor to v3.8.2renovate[bot]
2023-01-07Use EventManager for AuthenticationSuccess, AuthenticationFailure (#8960)Cody Robibero
2022-12-15chore(deps): update dotnet monorepo to v7.0.1 (#8900)renovate[bot]
* chore(deps): update dotnet monorepo to v7.0.1 * Update docker sdk Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Cody Robibero <cody@robibe.ro>
2022-12-09chore(deps): update dependency efcoresecondlevelcacheinterceptor to v3.8.1 ↵renovate[bot]
(#8881) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-07Update depsBond_009
2022-12-07Use ArgumentException.ThrowIfNullOrEmptyBond_009
2022-12-07Update projects to .net7Bond_009
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-12-05Fix some warnings and only disable TreatWarningsAsErrors for CodeAnalysis ↵Bond-009
(#8709)
2022-11-27chore(deps): update dependency efcoresecondlevelcacheinterceptor to v3.8.0 ↵renovate[bot]
(#8805) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-23chore(deps): update dependency efcoresecondlevelcacheinterceptor to v3.7.5renovate[bot]
2022-11-13Merge pull request #8601 from cvium/add_secondlevelcachingBond-009
2022-11-09chore(deps): update dotnet monorepo (#8708)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Cody Robibero <cody@robibe.ro>
2022-10-28Backport pull request #8608 from jellyfin/release-10.8.zcvium
Add index for DateCreated on ActivityLogs Original-merge: 39b29eb9f1250a025f6a78b451c1a79df39ed5e9 Merged-by: Claus Vium <cvium@users.noreply.github.com> Backported-by: Joshua M. Boniface <joshua@boniface.me>
2022-10-21remove unnecessary skipcommand since SQLite does not have NEWIDcvium
2022-10-21remove JellyfinDbProvider and add second level cachingcvium
2022-10-18chore(deps): update dotnet monoreporenovate[bot]
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-09-23Backport pull request #8433 from jellyfin/release-10.8.zCody Robibero
Update to dotnet 6.0.9 Original-merge: 4ec82ec662834867742a08dff680c938c4a5542a Merged-by: Joshua M. Boniface <joshua@boniface.me> Backported-by: Joshua M. Boniface <joshua@boniface.me>