aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer
AgeCommit message (Collapse)Author
2020-06-05Use typed logger where possiblecrobibero
2020-06-04Merge branch 'master' into userdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs # Emby.Server.Implementations/Library/UserManager.cs # Emby.Server.Implementations/Sorting/IsFavoriteOrLikeComparer.cs # Emby.Server.Implementations/Sorting/IsPlayedComparer.cs # Emby.Server.Implementations/Sorting/IsUnplayedComparer.cs # Emby.Server.Implementations/TV/TVSeriesManager.cs # Jellyfin.Server.Implementations/Users/DefaultAuthenticationProvider.cs
2020-06-03Merge pull request #3203 from Bond-009/warn18Vasily
Enable TreatWarningsAsErrors for Jellyfin.Server.Implementations in Release mode
2020-06-03Merge pull request #3179 from Bond-009/bugsAnthony Lavado
Fix some 'bugs' flagged by sonarcloud
2020-06-02Remove duplicate codeDavid
Co-authored-by: Vasily <JustAMan@users.noreply.github.com>
2020-06-01Remove log spam when using legacy apicrobibero
2020-05-29Enable TreatWarningsAsErrors for Jellyfin.Server.Implementations in Release modeBond_009
2020-05-26Make SonarCloud less angryPatrick Barron
2020-05-26Merge branch 'master' into userdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/Library/UserManager.cs # Jellyfin.Data/Jellyfin.Data.csproj # MediaBrowser.Api/UserService.cs # MediaBrowser.Controller/Library/IUserManager.cs
2020-05-26Don't send Exception message in Production EnvironmentDavid
2020-05-26Fix code issuesgion
2020-05-26Merge remote-tracking branch 'upstream/master' into syncplaygion
2020-05-25Fix some 'bugs' flagged by sonarcloudBond_009
2020-05-20Remove redundant qualifiersPatrick Barron
2020-05-20Fix more issuesPatrick Barron
2020-05-18Apply suggestions from code reviewConfusedPolarBear
2020-05-18Reuse existing CORS functionConfusedPolarBear
2020-05-18Merge remote-tracking branch 'upstream/master' into access-controlConfusedPolarBear
2020-05-18Remove extra whitespaceMark Monteiro
Co-authored-by: dkanada <dkanada@users.noreply.github.com>
2020-05-17DO not use developer exception page when exception stack trace should be ignoredMark Monteiro
2020-05-15Merge branch 'master' into userdb-efcorePatrick Barron
# Conflicts: # Emby.Server.Implementations/Activity/ActivityLogEntryPoint.cs # Emby.Server.Implementations/ApplicationHost.cs # Emby.Server.Implementations/Devices/DeviceManager.cs # Jellyfin.Server/Jellyfin.Server.csproj # Jellyfin.Server/Migrations/MigrationRunner.cs # MediaBrowser.Controller/Devices/IDeviceManager.cs
2020-05-15Merge remote-tracking branch 'upstream/master' into syncplaygion
2020-05-14Rename functionFrank Riley
2020-05-14Use simpler dictionary iterator.Frank Riley
2020-05-14Update Emby.Server.Implementations/HttpServer/HttpListenerHost.cs from reviewFrank Riley
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-05-14Fix #3083: Set the Access-Control-Allow-Origin header to the request ↵Frank Riley
origin/host header if possible
2020-05-14Merge branch 'master' into websocketMark Monteiro
2020-05-12Initial migration codePatrick Barron
2020-05-10Merge branch 'master' into simplify-https-configMark Monteiro
2020-05-09Fix code issuesgion
2020-05-02Add Access-Control-Allow-Origin header to exceptionsConfusedPolarBear
Fixes #1794
2020-05-02Make SonarCloud happyBond_009
2020-05-02Fix merge errorsBond_009
2020-05-02Merge branch 'master' into websocketBond_009
2020-04-29Merge pull request #2920 from Bond-009/tests2Vasily
Add some simple tests
2020-04-27Refactor and other minor changesgion
2020-04-27Implement KeepAlive for WebSocketsgion
2020-04-27Now parse date in header correctly as being in UTCVasily
2020-04-26Merge remote-tracking branch 'upstream/master' into simplify-https-configMark Monteiro
2020-04-22Merge branch 'master' into fix-auth-response-codesBond-009
2020-04-20Add some simple testsBond_009
2020-04-19fix spelling errordkanada
2020-04-17Fix buildBond_009
2020-04-17Use System.Buffers in RangeRequestWriterBond_009
2020-04-16Update Emby.Server.Implementations/HttpServer/HttpResultFactory.csVasily
Co-Authored-By: Bond-009 <bond.009@outlook.com>
2020-04-14Make Last-Modified and If-Modified-Since headers follow the specVasily
2020-04-13Do not return the exception message to the client for AuthenticationExceptionsMark Monteiro
2020-04-13Only show developer exception page for 500 server exceptionsMark Monteiro
Other response codes should be returned as normal
2020-04-13Return correct status codes for authentication and authorization errorsMark Monteiro
- Use AuthenticatonException to return 401 - Use SecurityException to return 403 - Update existing throws to throw the correct exception for the circumstance
2020-04-13Clean up SecurityExceptionMark Monteiro
- Remove unused SecurityExceptionType - Add missing constructor for InnerException - Add missing documentation