aboutsummaryrefslogblamecommitdiffstats
path: root/identity/common.go
blob: 007e10d609e9801161a64361fe89f96de443dc51 (plain) (tree)
1
2
3
4
5
6
7
8





                       

                                               



                                                              

                                                                         







                                                                                  
                              
 



                                                            







                                                                       
                    
 
                                    
                                                          
                             








                                                                       
package identity

import (
	"encoding/json"
	"errors"
	"fmt"

	"github.com/MichaelMure/git-bug/entity"
)

var ErrIdentityNotExist = errors.New("identity doesn't exist")

func NewErrMultipleMatch(matching []entity.Id) *entity.ErrMultipleMatch {
	return entity.NewErrMultipleMatch("identity", matching)
}

// Custom unmarshaling function to allow package user to delegate
// the decoding of an Identity and distinguish between an Identity
// and a Bare.
//
// If the given message has a "id" field, it's considered being a proper Identity.
func UnmarshalJSON(raw json.RawMessage) (Interface, error) {
	aux := &IdentityStub{}

	// First try to decode and load as a normal Identity
	err := json.Unmarshal(raw, &aux)
	if err == nil && aux.Id() != "" {
		return aux, nil
	}

	// abort if we have an error other than the wrong type
	if _, ok := err.(*json.UnmarshalTypeError); err != nil && !ok {
		return nil, err
	}

	// Fallback on a legacy Bare identity
	b := &Bare{}

	err = json.Unmarshal(raw, b)
	if err == nil && (b.name != "" || b.login != "") {
		return b, nil
	}

	// abort if we have an error other than the wrong type
	if _, ok := err.(*json.UnmarshalTypeError); err != nil && !ok {
		return nil, err
	}

	return nil, fmt.Errorf("unknown identity type")
}