-
-
Notifications
You must be signed in to change notification settings - Fork 794
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct Stash box endpoint inputs (#4924)
* Use stashbox endpoint instead of index * Update UI to not use deprecated fields
- Loading branch information
1 parent
94a978d
commit ed057c9
Showing
17 changed files
with
234 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package api | ||
|
||
import ( | ||
"fmt" | ||
"strings" | ||
|
||
"github.com/stashapp/stash/internal/manager/config" | ||
"github.com/stashapp/stash/pkg/models" | ||
"github.com/stashapp/stash/pkg/scraper/stashbox" | ||
) | ||
|
||
func (r *Resolver) newStashBoxClient(box models.StashBox) *stashbox.Client { | ||
return stashbox.NewClient(box, r.stashboxRepository()) | ||
} | ||
|
||
func resolveStashBoxFn(indexField, endpointField string) func(index *int, endpoint *string) (*models.StashBox, error) { | ||
return func(index *int, endpoint *string) (*models.StashBox, error) { | ||
boxes := config.GetInstance().GetStashBoxes() | ||
|
||
// prefer endpoint over index | ||
if endpoint != nil { | ||
for _, box := range boxes { | ||
if strings.EqualFold(*endpoint, box.Endpoint) { | ||
return box, nil | ||
} | ||
} | ||
return nil, fmt.Errorf("stash box not found") | ||
} | ||
|
||
if index != nil { | ||
if *index < 0 || *index >= len(boxes) { | ||
return nil, fmt.Errorf("invalid %s %d", indexField, index) | ||
} | ||
|
||
return boxes[*index], nil | ||
} | ||
|
||
return nil, fmt.Errorf("%s not provided", endpointField) | ||
} | ||
} | ||
|
||
var ( | ||
resolveStashBox = resolveStashBoxFn("stash_box_index", "stash_box_endpoint") | ||
resolveStashBoxBatchTagInput = resolveStashBoxFn("endpoint", "stash_box_endpoint") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.