Skip to content

Commit

Permalink
fix(radarr-4k): 🐛 Fixed an issue where the overrides wouldn't work fo…
Browse files Browse the repository at this point in the history
…r 4k Requests
  • Loading branch information
tidusjar committed Sep 7, 2024
1 parent 938a0b7 commit 0fb29a0
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 11 deletions.
15 changes: 15 additions & 0 deletions src/Ombi.Store/Entities/Requests/MovieRequests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@ public MovieRequests()
public DateTime MarkedAsDenied4K { get; set; }
public string DeniedReason4K { get; set; }

[NotMapped]
public RequestCombination RequestCombination
{
get
{
if (Has4KRequest && RequestedDate != default)
{
return RequestCombination.Both;
}
if (Has4KRequest) { return RequestCombination.FourK; }

return RequestCombination.Normal;
}
}


/// <summary>
/// Only Use for setting the Language Code, Use the LanguageCode property for reading
Expand Down
9 changes: 9 additions & 0 deletions src/Ombi.Store/Entities/Requests/RequestCombination.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace Ombi.Store.Entities.Requests
{
public enum RequestCombination
{
Normal,
FourK,
Both
}
}
7 changes: 7 additions & 0 deletions src/Ombi/ClientApp/src/app/interfaces/IRequestModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,19 @@ export interface IMovieRequests extends IFullBaseRequest {
requestedDate: Date;
watchedByRequestedUser: boolean;
playedByUsersCount: number;
requestCombination: RequestCombination;

// For the UI
rootPathOverrideTitle: string;
qualityOverrideTitle: string;
}

export enum RequestCombination {
Normal,
FourK,
Both
}

export interface IMovieAdvancedOptions {
requestId: number;
qualityOverride: number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, Inject, OnInit } from "@angular/core";
import { MatDialogRef, MAT_DIALOG_DATA } from "@angular/material/dialog";
import { IAdvancedData, IRadarrProfile, IRadarrRootFolder } from "../../../../../interfaces";
import { IAdvancedData, IRadarrProfile, IRadarrRootFolder, RequestCombination } from "../../../../../interfaces";
import { RadarrService } from "../../../../../services";

@Component({
Expand All @@ -11,6 +11,8 @@ export class MovieAdvancedOptionsComponent implements OnInit {

public radarrProfiles: IRadarrProfile[];
public radarrRootFolders: IRadarrRootFolder[];
public show4k: boolean = false;
public showNormal: boolean = false;

constructor(public dialogRef: MatDialogRef<MovieAdvancedOptionsComponent>, @Inject(MAT_DIALOG_DATA) public data: IAdvancedData,
private radarrService: RadarrService
Expand All @@ -19,16 +21,31 @@ export class MovieAdvancedOptionsComponent implements OnInit {


public async ngOnInit() {
this.radarrService.getQualityProfilesFromSettings().subscribe(c => {
this.radarrProfiles = c;
this.data.profiles = c;
this.setQualityOverrides();
});
this.radarrService.getRootFoldersFromSettings().subscribe(c => {
this.radarrRootFolders = c;
this.data.rootFolders = c;
this.setRootFolderOverrides();
});
this.show4k = this.data.movieRequest.requestCombination === RequestCombination.FourK || this.data.movieRequest.requestCombination === RequestCombination.Both;
this.showNormal = this.data.movieRequest.requestCombination === RequestCombination.Normal || this.data.movieRequest.requestCombination === RequestCombination.Both;
if (this.show4k) {
this.radarrService.getQualityProfiles4kFromSettings().subscribe(c => {
this.radarrProfiles = c;
this.data.profiles4k = c;
this.setQualityOverrides();
});
this.radarrService.getRootFolders4kFromSettings().subscribe(c => {
this.radarrRootFolders = c;
this.data.rootFolders4k = c;
this.setRootFolderOverrides();
});
} else { // Currently show either 4k or normal, if it's a dual request there needs to be more work done to save the overrides for 4k separately
this.radarrService.getQualityProfilesFromSettings().subscribe(c => {
this.radarrProfiles = c;
this.data.profiles = c;
this.setQualityOverrides();
});
this.radarrService.getRootFoldersFromSettings().subscribe(c => {
this.radarrRootFolders = c;
this.data.rootFolders = c;
this.setRootFolderOverrides();
});
}
}

private setQualityOverrides(): void {
Expand Down

0 comments on commit 0fb29a0

Please sign in to comment.