mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-03 23:38:07 +08:00
- Modified Godeps/Godeps.json by hand - [TEST] Updated welcome docs hash to sharness - [TEST] Updated contact doc - [TEST] disabled breaking test (t0080-repo refs local)
27 lines
765 B
Go
27 lines
765 B
Go
package namesys
|
|
|
|
import (
|
|
"errors"
|
|
|
|
proquint "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/bren2010/proquint"
|
|
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
|
u "github.com/ipfs/go-ipfs/util"
|
|
)
|
|
|
|
type ProquintResolver struct{}
|
|
|
|
// CanResolve implements Resolver. Checks whether the name is a proquint string.
|
|
func (r *ProquintResolver) CanResolve(name string) bool {
|
|
ok, err := proquint.IsProquint(name)
|
|
return err == nil && ok
|
|
}
|
|
|
|
// Resolve implements Resolver. Decodes the proquint string.
|
|
func (r *ProquintResolver) Resolve(ctx context.Context, name string) (u.Key, error) {
|
|
ok := r.CanResolve(name)
|
|
if !ok {
|
|
return "", errors.New("not a valid proquint string")
|
|
}
|
|
return u.Key(proquint.Decode(name)), nil
|
|
}
|