remove tag stuff

This commit is contained in:
Gykes 2025-12-03 12:12:40 -08:00
parent 87949ee05a
commit e2e866f259
10 changed files with 50 additions and 258 deletions

View file

@ -165,12 +165,6 @@ type Query {
input: ScrapeSingleStudioInput! input: ScrapeSingleStudioInput!
): [ScrapedStudio!]! ): [ScrapedStudio!]!
"Scrape for a single tag"
scrapeSingleTag(
source: ScraperSourceInput!
input: ScrapeSingleTagInput!
): [ScrapedTag!]!
"Scrape for a single performer" "Scrape for a single performer"
scrapeSinglePerformer( scrapeSinglePerformer(
source: ScraperSourceInput! source: ScraperSourceInput!

View file

@ -198,13 +198,6 @@ input ScrapeSingleStudioInput {
query: String query: String
} }
input ScrapeSingleTagInput {
"""
Query can be either a name or a Stash ID
"""
query: String
}
input ScrapeSinglePerformerInput { input ScrapeSinglePerformerInput {
"Instructs to query by string" "Instructs to query by string"
query: String query: String

View file

@ -170,12 +170,6 @@ query FindStudio($id: ID, $name: String) {
} }
} }
query FindTag($id: ID, $name: String) {
findTag(id: $id, name: $name) {
...TagFragment
}
}
mutation SubmitFingerprint($input: FingerprintSubmission!) { mutation SubmitFingerprint($input: FingerprintSubmission!) {
submitFingerprint(input: $input) submitFingerprint(input: $input)
} }

View file

@ -353,45 +353,6 @@ func (r *queryResolver) ScrapeSingleStudio(ctx context.Context, source scraper.S
return nil, errors.New("stash_box_index must be set") return nil, errors.New("stash_box_index must be set")
} }
func (r *queryResolver) ScrapeSingleTag(ctx context.Context, source scraper.Source, input ScrapeSingleTagInput) ([]*models.ScrapedTag, error) {
if source.StashBoxIndex != nil || source.StashBoxEndpoint != nil {
b, err := resolveStashBox(source.StashBoxIndex, source.StashBoxEndpoint)
if err != nil {
return nil, err
}
client := r.newStashBoxClient(*b)
var ret []*models.ScrapedTag
out, err := client.FindTag(ctx, *input.Query)
if err != nil {
return nil, err
} else if out != nil {
ret = append(ret, out)
}
if len(ret) > 0 {
if err := r.withReadTxn(ctx, func(ctx context.Context) error {
for _, tag := range ret {
if err := match.ScrapedTag(ctx, r.repository.Tag, tag, b.Endpoint); err != nil {
return err
}
}
return nil
}); err != nil {
return nil, err
}
return ret, nil
}
return nil, nil
}
return nil, errors.New("stash_box_index must be set")
}
func (r *queryResolver) ScrapeSinglePerformer(ctx context.Context, source scraper.Source, input ScrapeSinglePerformerInput) ([]*models.ScrapedPerformer, error) { func (r *queryResolver) ScrapeSinglePerformer(ctx context.Context, source scraper.Source, input ScrapeSinglePerformerInput) ([]*models.ScrapedPerformer, error) {
var ret []*models.ScrapedPerformer var ret []*models.ScrapedPerformer
switch { switch {

View file

@ -1,36 +0,0 @@
package stashbox
import (
"context"
"github.com/google/uuid"
"github.com/stashapp/stash/pkg/models"
)
func (c Client) FindTag(ctx context.Context, query string) (*models.ScrapedTag, error) {
var id *string
var name *string
_, err := uuid.Parse(query)
if err == nil {
// Confirmed the user passed in a Stash ID
id = &query
} else {
// Otherwise assume they're searching on a name
name = &query
}
tag, err := c.client.FindTag(ctx, id, name)
if err != nil {
return nil, err
}
if tag.FindTag == nil {
return nil, nil
}
return &models.ScrapedTag{
Name: tag.FindTag.Name,
RemoteSiteID: &tag.FindTag.ID,
}, nil
}

View file

@ -62,15 +62,6 @@ query ScrapeSingleStudio(
} }
} }
query ScrapeSingleTag(
$source: ScraperSourceInput!
$input: ScrapeSingleTagInput!
) {
scrapeSingleTag(source: $source, input: $input) {
...ScrapedSceneTagData
}
}
query ScrapeSinglePerformer( query ScrapeSinglePerformer(
$source: ScraperSourceInput! $source: ScraperSourceInput!
$input: ScrapeSinglePerformerInput! $input: ScrapeSinglePerformerInput!

View file

@ -15,7 +15,6 @@ import {
stashBoxPerformerQuery, stashBoxPerformerQuery,
stashBoxSceneQuery, stashBoxSceneQuery,
stashBoxStudioQuery, stashBoxStudioQuery,
stashBoxTagQuery,
} from "src/core/StashService"; } from "src/core/StashService";
import { useToast } from "src/hooks/Toast"; import { useToast } from "src/hooks/Toast";
import { stringToGender } from "src/utils/gender"; import { stringToGender } from "src/utils/gender";
@ -23,10 +22,9 @@ import { stringToGender } from "src/utils/gender";
type SearchResultItem = type SearchResultItem =
| GQL.ScrapedPerformerDataFragment | GQL.ScrapedPerformerDataFragment
| GQL.ScrapedSceneDataFragment | GQL.ScrapedSceneDataFragment
| GQL.ScrapedStudioDataFragment | GQL.ScrapedStudioDataFragment;
| GQL.ScrapedSceneTagDataFragment;
export type StashBoxEntityType = "performer" | "scene" | "studio" | "tag"; export type StashBoxEntityType = "performer" | "scene" | "studio";
interface IProps { interface IProps {
entityType: StashBoxEntityType; entityType: StashBoxEntityType;
@ -234,27 +232,6 @@ export const StudioSearchResult: React.FC<IStudioResultProps> = ({
); );
}; };
// Tag Result Component
interface ITagResultProps {
tag: GQL.ScrapedSceneTagDataFragment;
}
export const TagSearchResult: React.FC<ITagResultProps> = ({ tag }) => {
return (
<div className="mt-3 search-item" style={{ cursor: "pointer" }}>
<div className="tag-result">
<Row>
<div className="col flex-column">
<h4 className="tag-name">
<span>{tag.name}</span>
</h4>
</div>
</Row>
</div>
</div>
);
};
// Helper to get entity type display name for i18n // Helper to get entity type display name for i18n
function getEntityTypeDisplayName(entityType: StashBoxEntityType): string { function getEntityTypeDisplayName(entityType: StashBoxEntityType): string {
switch (entityType) { switch (entityType) {
@ -264,8 +241,6 @@ function getEntityTypeDisplayName(entityType: StashBoxEntityType): string {
return "Scene"; return "Scene";
case "studio": case "studio":
return "Studio"; return "Studio";
case "tag":
return "Tag";
} }
} }
@ -278,8 +253,6 @@ function getFoundMessageId(entityType: StashBoxEntityType): string {
return "dialogs.scenes_found"; return "dialogs.scenes_found";
case "studio": case "studio":
return "dialogs.studios_found"; return "dialogs.studios_found";
case "tag":
return "dialogs.tags_found";
} }
} }
@ -345,14 +318,6 @@ export const StashBoxIDSearchModal: React.FC<IProps> = ({
setResults(queryData.data?.scrapeSingleStudio ?? []); setResults(queryData.data?.scrapeSingleStudio ?? []);
break; break;
} }
case "tag": {
const queryData = await stashBoxTagQuery(
query,
selectedStashBox.endpoint
);
setResults(queryData.data?.scrapeSingleTag ?? []);
break;
}
} }
} catch (error) { } catch (error) {
Toast.error(error); Toast.error(error);
@ -392,10 +357,6 @@ export const StashBoxIDSearchModal: React.FC<IProps> = ({
return ( return (
<StudioSearchResult studio={item as GQL.ScrapedStudioDataFragment} /> <StudioSearchResult studio={item as GQL.ScrapedStudioDataFragment} />
); );
case "tag":
return (
<TagSearchResult tag={item as GQL.ScrapedSceneTagDataFragment} />
);
} }
} }

View file

@ -3,8 +3,7 @@ import { FormattedMessage, useIntl } from "react-intl";
import * as GQL from "src/core/generated-graphql"; import * as GQL from "src/core/generated-graphql";
import * as yup from "yup"; import * as yup from "yup";
import { DetailsEditNavbar } from "src/components/Shared/DetailsEditNavbar"; import { DetailsEditNavbar } from "src/components/Shared/DetailsEditNavbar";
import { Button, Form } from "react-bootstrap"; import { Form } from "react-bootstrap";
import { faPlus } from "@fortawesome/free-solid-svg-icons";
import ImageUtils from "src/utils/image"; import ImageUtils from "src/utils/image";
import { useFormik } from "formik"; import { useFormik } from "formik";
import { Prompt } from "react-router-dom"; import { Prompt } from "react-router-dom";
@ -12,14 +11,11 @@ import Mousetrap from "mousetrap";
import { LoadingIndicator } from "src/components/Shared/LoadingIndicator"; import { LoadingIndicator } from "src/components/Shared/LoadingIndicator";
import isEqual from "lodash-es/isEqual"; import isEqual from "lodash-es/isEqual";
import { useToast } from "src/hooks/Toast"; import { useToast } from "src/hooks/Toast";
import { useConfigurationContext } from "src/hooks/Config";
import { handleUnsavedChanges } from "src/utils/navigation"; import { handleUnsavedChanges } from "src/utils/navigation";
import { formikUtils } from "src/utils/form"; import { formikUtils } from "src/utils/form";
import { yupFormikValidate, yupUniqueAliases } from "src/utils/yup"; import { yupFormikValidate, yupUniqueAliases } from "src/utils/yup";
import { addUpdateStashID, getStashIDs } from "src/utils/stashIds"; import { getStashIDs } from "src/utils/stashIds";
import { Tag, TagSelect } from "../TagSelect"; import { Tag, TagSelect } from "../TagSelect";
import { Icon } from "src/components/Shared/Icon";
import StashBoxIDSearchModal from "src/components/Shared/StashBoxIDSearchModal";
interface ITagEditPanel { interface ITagEditPanel {
tag: Partial<GQL.TagDataFragment>; tag: Partial<GQL.TagDataFragment>;
@ -40,13 +36,9 @@ export const TagEditPanel: React.FC<ITagEditPanel> = ({
}) => { }) => {
const intl = useIntl(); const intl = useIntl();
const Toast = useToast(); const Toast = useToast();
const { configuration: stashConfig } = useConfigurationContext();
const isNew = tag.id === undefined; const isNew = tag.id === undefined;
// Editing state
const [isStashIDSearchOpen, setIsStashIDSearchOpen] = useState(false);
// Network state // Network state
const [isLoading, setIsLoading] = useState(false); const [isLoading, setIsLoading] = useState(false);
@ -151,14 +143,6 @@ export const TagEditPanel: React.FC<ITagEditPanel> = ({
ImageUtils.onImageChange(event, onImageLoad); ImageUtils.onImageChange(event, onImageLoad);
} }
function onStashIDSelected(item?: GQL.StashIdInput) {
if (!item) return;
formik.setFieldValue(
"stash_ids",
addUpdateStashID(formik.values.stash_ids, item)
);
}
const { const {
renderField, renderField,
renderInputField, renderInputField,
@ -202,21 +186,6 @@ export const TagEditPanel: React.FC<ITagEditPanel> = ({
// TODO: CSS class // TODO: CSS class
return ( return (
<>
{isStashIDSearchOpen && (
<StashBoxIDSearchModal
entityType="tag"
stashBoxes={stashConfig?.general.stashBoxes ?? []}
excludedStashBoxEndpoints={formik.values.stash_ids.map(
(s) => s.endpoint
)}
onSelectItem={(item) => {
onStashIDSelected(item);
setIsStashIDSearchOpen(false);
}}
/>
)}
<div> <div>
{isNew && ( {isNew && (
<h2> <h2>
@ -246,21 +215,7 @@ export const TagEditPanel: React.FC<ITagEditPanel> = ({
{renderInputField("description", "textarea")} {renderInputField("description", "textarea")}
{renderParentTagsField()} {renderParentTagsField()}
{renderSubTagsField()} {renderSubTagsField()}
{renderStashIDsField( {renderStashIDsField("stash_ids", "tags")}
"stash_ids",
"tags",
"stash_ids",
undefined,
<Button
variant="success"
className="mr-2 py-0"
onClick={() => setIsStashIDSearchOpen(true)}
disabled={!stashConfig?.general.stashBoxes?.length}
title={intl.formatMessage({ id: "actions.add_stash_id" })}
>
<Icon icon={faPlus} />
</Button>
)}
<hr /> <hr />
{renderInputField("ignore_auto_tag", "checkbox")} {renderInputField("ignore_auto_tag", "checkbox")}
</Form> </Form>
@ -272,9 +227,7 @@ export const TagEditPanel: React.FC<ITagEditPanel> = ({
isEditing isEditing
onToggleEdit={onCancel} onToggleEdit={onCancel}
onSave={formik.handleSubmit} onSave={formik.handleSubmit}
saveDisabled={ saveDisabled={(!isNew && !formik.dirty) || !isEqual(formik.errors, {})}
(!isNew && !formik.dirty) || !isEqual(formik.errors, {})
}
onImageChange={onImageChange} onImageChange={onImageChange}
onImageChangeURL={onImageLoad} onImageChangeURL={onImageLoad}
onClearImage={() => onImageLoad(null)} onClearImage={() => onImageLoad(null)}
@ -282,6 +235,5 @@ export const TagEditPanel: React.FC<ITagEditPanel> = ({
acceptSVG acceptSVG
/> />
</div> </div>
</>
); );
}; };

View file

@ -2329,23 +2329,6 @@ export const stashBoxSceneQuery = (query: string, stashBoxEndpoint: string) =>
} }
); );
export const stashBoxTagQuery = (
query: string | null,
stashBoxEndpoint: string
) =>
client.query<GQL.ScrapeSingleTagQuery, GQL.ScrapeSingleTagQueryVariables>({
query: GQL.ScrapeSingleTagDocument,
variables: {
source: {
stash_box_endpoint: stashBoxEndpoint,
},
input: {
query: query,
},
},
fetchPolicy: "network-only",
});
export const mutateStashBoxBatchPerformerTag = ( export const mutateStashBoxBatchPerformerTag = (
input: GQL.StashBoxBatchTagInput input: GQL.StashBoxBatchTagInput
) => ) =>

View file

@ -1015,7 +1015,6 @@
}, },
"scenes_found": "{count} scenes found", "scenes_found": "{count} scenes found",
"studios_found": "{count} studios found", "studios_found": "{count} studios found",
"tags_found": "{count} tags found",
"scrape_entity_query": "{entity_type} Scrape Query", "scrape_entity_query": "{entity_type} Scrape Query",
"scrape_entity_title": "{entity_type} Scrape Results", "scrape_entity_title": "{entity_type} Scrape Results",
"scrape_results_existing": "Existing", "scrape_results_existing": "Existing",