mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
* Replace error assertions with Go 1.13 style
Use `errors.As(..)` over type assertions. This enables better use of
wrapped errors in the future, and lets us pass some errorlint checks
in the process.
The rewrite is entirely mechanical, and uses a standard idiom for
doing so.
* Use Go 1.13's errors.Is(..)
Rather than directly checking for error equality, use errors.Is(..).
This protects against error wrapping issues in the future.
Even though something like sql.ErrNoRows doesn't need the wrapping, do
so anyway, for the sake of consistency throughout the code base.
The change almost lets us pass the `errorlint` Go checker except for
a missing case in `js.go` which is to be handled separately; it isn't
mechanical, like these changes are.
* Remove goconst
goconst isn't a useful linter in many cases, because it's false positive
rate is high. It's 100% for the current code base.
* Avoid direct comparison of errors in recover()
Assert that we are catching an error from recover(). If we are,
check that the error caught matches errStop.
* Enable the "errorlint" checker
Configure the checker to avoid checking for errorf wraps. These are
often false positives since the suggestion is to blanket wrap errors
with %w, and that exposes the underlying API which you might not want
to do.
The other warnings are good however, and with the current patch stack,
the code base passes all these checks as well.
* Configure rowserrcheck
The project uses sqlx. Configure rowserrcheck to include said package.
* Mechanically rewrite a large set of errors
Mechanically search for errors that look like
fmt.Errorf("...%s", err.Error())
and rewrite those into
fmt.Errorf("...%v", err)
The `fmt` package is error-aware and knows how to call err.Error()
itself.
The rationale is that this is more idiomatic Go; it paves the
way for using error wrapping later with %w in some sites.
This patch only addresses the entirely mechanical rewriting caught by
a project-side search/replace. There are more individual sites not
addressed by this patch.
232 lines
4.1 KiB
Go
232 lines
4.1 KiB
Go
//go:build plugin_example
|
|
// +build plugin_example
|
|
|
|
package common
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/shurcooL/graphql"
|
|
"github.com/stashapp/stash/pkg/plugin/common/log"
|
|
)
|
|
|
|
const tagName = "Hawwwwt"
|
|
|
|
// graphql inputs and returns
|
|
type TagCreate struct {
|
|
ID graphql.ID `graphql:"id"`
|
|
}
|
|
|
|
type TagCreateInput struct {
|
|
Name graphql.String `graphql:"name" json:"name"`
|
|
}
|
|
|
|
type TagDestroyInput struct {
|
|
ID graphql.ID `graphql:"id" json:"id"`
|
|
}
|
|
|
|
type FindScenesResultType struct {
|
|
Count graphql.Int
|
|
Scenes []Scene
|
|
}
|
|
|
|
type Tag struct {
|
|
ID graphql.ID `graphql:"id"`
|
|
Name graphql.String `graphql:"name"`
|
|
}
|
|
|
|
type Scene struct {
|
|
ID graphql.ID
|
|
Tags []Tag
|
|
}
|
|
|
|
func (s Scene) getTagIds() []graphql.ID {
|
|
ret := []graphql.ID{}
|
|
|
|
for _, t := range s.Tags {
|
|
ret = append(ret, t.ID)
|
|
}
|
|
|
|
return ret
|
|
}
|
|
|
|
type FindFilterType struct {
|
|
PerPage *graphql.Int `graphql:"per_page" json:"per_page"`
|
|
Sort *graphql.String `graphql:"sort" json:"sort"`
|
|
}
|
|
|
|
type SceneUpdate struct {
|
|
ID graphql.ID `graphql:"id"`
|
|
}
|
|
|
|
type SceneUpdateInput struct {
|
|
ID graphql.ID `graphql:"id" json:"id"`
|
|
TagIds []graphql.ID `graphql:"tag_ids" json:"tag_ids"`
|
|
}
|
|
|
|
func getTagID(client *graphql.Client, create bool) (*graphql.ID, error) {
|
|
log.Info("Checking if tag exists already")
|
|
|
|
// see if tag exists already
|
|
var q struct {
|
|
AllTags []Tag `graphql:"allTags"`
|
|
}
|
|
|
|
err := client.Query(context.Background(), &q, nil)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Error getting tags: %s\n", err.Error())
|
|
}
|
|
|
|
for _, t := range q.AllTags {
|
|
if t.Name == tagName {
|
|
id := t.ID
|
|
return &id, nil
|
|
}
|
|
}
|
|
|
|
if !create {
|
|
log.Info("Not found and not creating")
|
|
return nil, nil
|
|
}
|
|
|
|
// create the tag
|
|
var m struct {
|
|
TagCreate TagCreate `graphql:"tagCreate(input: $s)"`
|
|
}
|
|
|
|
input := TagCreateInput{
|
|
Name: tagName,
|
|
}
|
|
|
|
vars := map[string]interface{}{
|
|
"s": input,
|
|
}
|
|
|
|
log.Info("Creating new tag")
|
|
|
|
err = client.Mutate(context.Background(), &m, vars)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Error mutating scene: %s\n", err.Error())
|
|
}
|
|
|
|
return &m.TagCreate.ID, nil
|
|
}
|
|
|
|
func findRandomScene(client *graphql.Client) (*Scene, error) {
|
|
// get a random scene
|
|
var q struct {
|
|
FindScenes FindScenesResultType `graphql:"findScenes(filter: $c)"`
|
|
}
|
|
|
|
pp := graphql.Int(1)
|
|
sort := graphql.String("random")
|
|
filterInput := &FindFilterType{
|
|
PerPage: &pp,
|
|
Sort: &sort,
|
|
}
|
|
|
|
vars := map[string]interface{}{
|
|
"c": filterInput,
|
|
}
|
|
|
|
log.Info("Finding a random scene")
|
|
err := client.Query(context.Background(), &q, vars)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Error getting random scene: %s\n", err.Error())
|
|
}
|
|
|
|
if q.FindScenes.Count == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
return &q.FindScenes.Scenes[0], nil
|
|
}
|
|
|
|
func addTagId(tagIds []graphql.ID, tagId graphql.ID) []graphql.ID {
|
|
for _, t := range tagIds {
|
|
if t == tagId {
|
|
return tagIds
|
|
}
|
|
}
|
|
|
|
tagIds = append(tagIds, tagId)
|
|
return tagIds
|
|
}
|
|
|
|
func AddTag(client *graphql.Client) error {
|
|
tagID, err := getTagID(client, true)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
scene, err := findRandomScene(client)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if scene == nil {
|
|
return errors.New("no scenes to add tag to")
|
|
}
|
|
|
|
var m struct {
|
|
SceneUpdate SceneUpdate `graphql:"sceneUpdate(input: $s)"`
|
|
}
|
|
|
|
input := SceneUpdateInput{
|
|
ID: scene.ID,
|
|
TagIds: scene.getTagIds(),
|
|
}
|
|
|
|
input.TagIds = addTagId(input.TagIds, *tagID)
|
|
|
|
vars := map[string]interface{}{
|
|
"s": input,
|
|
}
|
|
|
|
log.Infof("Adding tag to scene %v", scene.ID)
|
|
err = client.Mutate(context.Background(), &m, vars)
|
|
if err != nil {
|
|
return fmt.Errorf("Error mutating scene: %v", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func RemoveTag(client *graphql.Client) error {
|
|
tagID, err := getTagID(client, false)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if tagID == nil {
|
|
log.Info("Tag does not exist. Nothing to remove")
|
|
return nil
|
|
}
|
|
|
|
// destroy the tag
|
|
var m struct {
|
|
TagDestroy bool `graphql:"tagDestroy(input: $s)"`
|
|
}
|
|
|
|
input := TagDestroyInput{
|
|
ID: *tagID,
|
|
}
|
|
|
|
vars := map[string]interface{}{
|
|
"s": input,
|
|
}
|
|
|
|
log.Info("Destroying tag")
|
|
|
|
err = client.Mutate(context.Background(), &m, vars)
|
|
if err != nil {
|
|
return fmt.Errorf("Error destroying tag: %v", err)
|
|
}
|
|
|
|
return nil
|
|
}
|