Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
policy
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gaia-X
Trust Services API
policy
Commits
f4b27169
Commit
f4b27169
authored
2 years ago
by
Yordan Kinkov
Browse files
Options
Downloads
Patches
Plain Diff
Rename file and struct for DID:WEB to URL transformation
parent
c19e7248
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cmd/policy/main.go
+3
-3
3 additions, 3 deletions
cmd/policy/main.go
internal/regofunc/did_web.go
+9
-9
9 additions, 9 deletions
internal/regofunc/did_web.go
internal/regofunc/did_web_test.go
+4
-4
4 additions, 4 deletions
internal/regofunc/did_web_test.go
with
16 additions
and
16 deletions
cmd/policy/main.go
+
3
−
3
View file @
f4b27169
...
@@ -87,7 +87,7 @@ func main() {
...
@@ -87,7 +87,7 @@ func main() {
taskFuncs
:=
regofunc
.
NewTaskFuncs
(
cfg
.
Task
.
Addr
,
httpClient
)
taskFuncs
:=
regofunc
.
NewTaskFuncs
(
cfg
.
Task
.
Addr
,
httpClient
)
ocmFuncs
:=
regofunc
.
NewOcmFuncs
(
cfg
.
OCM
.
Addr
,
httpClient
)
ocmFuncs
:=
regofunc
.
NewOcmFuncs
(
cfg
.
OCM
.
Addr
,
httpClient
)
signerFuncs
:=
regofunc
.
NewSignerFuncs
(
cfg
.
Signer
.
Addr
,
httpClient
)
signerFuncs
:=
regofunc
.
NewSignerFuncs
(
cfg
.
Signer
.
Addr
,
httpClient
)
didTransformerFuncs
:=
regofunc
.
NewDID
Transformer
Funcs
()
didTransformerFuncs
:=
regofunc
.
NewDID
Web
Funcs
()
regofunc
.
Register
(
"cacheGet"
,
rego
.
Function3
(
cacheFuncs
.
CacheGetFunc
()))
regofunc
.
Register
(
"cacheGet"
,
rego
.
Function3
(
cacheFuncs
.
CacheGetFunc
()))
regofunc
.
Register
(
"cacheSet"
,
rego
.
Function4
(
cacheFuncs
.
CacheSetFunc
()))
regofunc
.
Register
(
"cacheSet"
,
rego
.
Function4
(
cacheFuncs
.
CacheSetFunc
()))
regofunc
.
Register
(
"didResolve"
,
rego
.
Function1
(
didResolverFuncs
.
ResolveFunc
()))
regofunc
.
Register
(
"didResolve"
,
rego
.
Function1
(
didResolverFuncs
.
ResolveFunc
()))
...
@@ -100,8 +100,8 @@ func main() {
...
@@ -100,8 +100,8 @@ func main() {
regofunc
.
Register
(
"verifyProof"
,
rego
.
Function1
(
signerFuncs
.
VerifyProof
()))
regofunc
.
Register
(
"verifyProof"
,
rego
.
Function1
(
signerFuncs
.
VerifyProof
()))
regofunc
.
Register
(
"ocmLoginProofInvitation"
,
rego
.
Function2
(
ocmFuncs
.
GetLoginProofInvitation
()))
regofunc
.
Register
(
"ocmLoginProofInvitation"
,
rego
.
Function2
(
ocmFuncs
.
GetLoginProofInvitation
()))
regofunc
.
Register
(
"ocmLoginProofResult"
,
rego
.
Function1
(
ocmFuncs
.
GetLoginProofResult
()))
regofunc
.
Register
(
"ocmLoginProofResult"
,
rego
.
Function1
(
ocmFuncs
.
GetLoginProofResult
()))
regofunc
.
Register
(
"didToURL"
,
rego
.
Function1
(
didTransformerFuncs
.
ToURLFunc
()))
regofunc
.
Register
(
"didToURL"
,
rego
.
Function1
(
didTransformerFuncs
.
DID
ToURLFunc
()))
regofunc
.
Register
(
"urlToDID"
,
rego
.
Function1
(
didTransformerFuncs
.
FromURL
Func
()))
regofunc
.
Register
(
"urlToDID"
,
rego
.
Function1
(
didTransformerFuncs
.
URLToDID
Func
()))
}
}
// subscribe the cache for policy data changes
// subscribe the cache for policy data changes
...
...
This diff is collapsed.
Click to expand it.
internal/regofunc/did_
transformer
.go
→
internal/regofunc/did_
web
.go
+
9
−
9
View file @
f4b27169
...
@@ -17,7 +17,7 @@ const (
...
@@ -17,7 +17,7 @@ const (
defaultURLPath
=
".well-known"
defaultURLPath
=
".well-known"
)
)
type
DID
Transformer
Funcs
struct
{}
type
DID
Web
Funcs
struct
{}
type
DID
struct
{
type
DID
struct
{
scheme
string
// scheme is always "did"
scheme
string
// scheme is always "did"
...
@@ -25,11 +25,11 @@ type DID struct {
...
@@ -25,11 +25,11 @@ type DID struct {
path
string
// path is the unique URI assigned by the DID method
path
string
// path is the unique URI assigned by the DID method
}
}
func
NewDID
Transformer
Funcs
()
*
DID
Transformer
Funcs
{
func
NewDID
Web
Funcs
()
*
DID
Web
Funcs
{
return
&
DID
Transformer
Funcs
{}
return
&
DID
Web
Funcs
{}
}
}
func
(
d
t
*
DID
Transformer
Funcs
)
ToURLFunc
()
(
*
rego
.
Function
,
rego
.
Builtin1
)
{
func
(
d
w
*
DID
Web
Funcs
)
DID
ToURLFunc
()
(
*
rego
.
Function
,
rego
.
Builtin1
)
{
return
&
rego
.
Function
{
return
&
rego
.
Function
{
Name
:
"url_from_did"
,
Name
:
"url_from_did"
,
Decl
:
types
.
NewFunction
(
types
.
Args
(
types
.
S
),
types
.
A
),
Decl
:
types
.
NewFunction
(
types
.
Args
(
types
.
S
),
types
.
A
),
...
@@ -45,7 +45,7 @@ func (dt *DIDTransformerFuncs) ToURLFunc() (*rego.Function, rego.Builtin1) {
...
@@ -45,7 +45,7 @@ func (dt *DIDTransformerFuncs) ToURLFunc() (*rego.Function, rego.Builtin1) {
return
nil
,
errors
.
New
(
"DID cannot be empty"
)
return
nil
,
errors
.
New
(
"DID cannot be empty"
)
}
}
u
,
err
:=
d
t
.
didToURL
(
did
)
u
,
err
:=
d
w
.
didToURL
(
did
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
...
@@ -54,7 +54,7 @@ func (dt *DIDTransformerFuncs) ToURLFunc() (*rego.Function, rego.Builtin1) {
...
@@ -54,7 +54,7 @@ func (dt *DIDTransformerFuncs) ToURLFunc() (*rego.Function, rego.Builtin1) {
}
}
}
}
func
(
d
t
*
DID
TransformerFuncs
)
FromURL
Func
()
(
*
rego
.
Function
,
rego
.
Builtin1
)
{
func
(
d
w
*
DID
WebFuncs
)
URLToDID
Func
()
(
*
rego
.
Function
,
rego
.
Builtin1
)
{
return
&
rego
.
Function
{
return
&
rego
.
Function
{
Name
:
"did_from_url"
,
Name
:
"did_from_url"
,
Decl
:
types
.
NewFunction
(
types
.
Args
(
types
.
S
),
types
.
A
),
Decl
:
types
.
NewFunction
(
types
.
Args
(
types
.
S
),
types
.
A
),
...
@@ -77,7 +77,7 @@ func (dt *DIDTransformerFuncs) FromURLFunc() (*rego.Function, rego.Builtin1) {
...
@@ -77,7 +77,7 @@ func (dt *DIDTransformerFuncs) FromURLFunc() (*rego.Function, rego.Builtin1) {
return
nil
,
errors
.
New
(
"invalid URL for did:web method"
)
return
nil
,
errors
.
New
(
"invalid URL for did:web method"
)
}
}
did
:=
d
t
.
urlToDID
(
uri
)
did
:=
d
w
.
urlToDID
(
uri
)
return
ast
.
StringTerm
(
did
.
String
()),
nil
return
ast
.
StringTerm
(
did
.
String
()),
nil
}
}
...
@@ -85,7 +85,7 @@ func (dt *DIDTransformerFuncs) FromURLFunc() (*rego.Function, rego.Builtin1) {
...
@@ -85,7 +85,7 @@ func (dt *DIDTransformerFuncs) FromURLFunc() (*rego.Function, rego.Builtin1) {
// didToURL transforms a valid DID, created by the "did:web" Method Specification, to a URL.
// didToURL transforms a valid DID, created by the "did:web" Method Specification, to a URL.
// Documentation can be found here: https://w3c-ccg.github.io/did-method-web/
// Documentation can be found here: https://w3c-ccg.github.io/did-method-web/
func
(
d
t
*
DID
Transformer
Funcs
)
didToURL
(
DID
string
)
(
*
url
.
URL
,
error
)
{
func
(
d
w
*
DID
Web
Funcs
)
didToURL
(
DID
string
)
(
*
url
.
URL
,
error
)
{
ss
:=
strings
.
Split
(
DID
,
didSeparator
)
ss
:=
strings
.
Split
(
DID
,
didSeparator
)
if
len
(
ss
)
<
3
{
if
len
(
ss
)
<
3
{
return
nil
,
errors
.
New
(
"invalid DID, host is not found"
)
return
nil
,
errors
.
New
(
"invalid DID, host is not found"
)
...
@@ -117,7 +117,7 @@ func (dt *DIDTransformerFuncs) didToURL(DID string) (*url.URL, error) {
...
@@ -117,7 +117,7 @@ func (dt *DIDTransformerFuncs) didToURL(DID string) (*url.URL, error) {
// urlToDID transforms a valid URL to a DID created following the "did:web" Method Specification.
// urlToDID transforms a valid URL to a DID created following the "did:web" Method Specification.
// Documentation can be found here: https://w3c-ccg.github.io/did-method-web/
// Documentation can be found here: https://w3c-ccg.github.io/did-method-web/
func
(
d
t
*
DID
Transformer
Funcs
)
urlToDID
(
uri
*
url
.
URL
)
*
DID
{
func
(
d
w
*
DID
Web
Funcs
)
urlToDID
(
uri
*
url
.
URL
)
*
DID
{
p
:=
strings
.
TrimSuffix
(
uri
.
Path
,
"did.json"
)
p
:=
strings
.
TrimSuffix
(
uri
.
Path
,
"did.json"
)
sp
:=
strings
.
Split
(
p
,
urlSeparator
)
sp
:=
strings
.
Split
(
p
,
urlSeparator
)
...
...
This diff is collapsed.
Click to expand it.
internal/regofunc/did_
transformer
_test.go
→
internal/regofunc/did_
web
_test.go
+
4
−
4
View file @
f4b27169
...
@@ -53,11 +53,11 @@ func TestToURLFunc(t *testing.T) {
...
@@ -53,11 +53,11 @@ func TestToURLFunc(t *testing.T) {
for
_
,
test
:=
range
tests
{
for
_
,
test
:=
range
tests
{
t
.
Run
(
test
.
name
,
func
(
t
*
testing
.
T
)
{
t
.
Run
(
test
.
name
,
func
(
t
*
testing
.
T
)
{
DIDTransformerFuncs
:=
regofunc
.
NewDID
Transformer
Funcs
()
DIDTransformerFuncs
:=
regofunc
.
NewDID
Web
Funcs
()
r
:=
rego
.
New
(
r
:=
rego
.
New
(
rego
.
Query
(
test
.
regoQuery
),
rego
.
Query
(
test
.
regoQuery
),
rego
.
Function1
(
DIDTransformerFuncs
.
ToURLFunc
()),
rego
.
Function1
(
DIDTransformerFuncs
.
DID
ToURLFunc
()),
rego
.
StrictBuiltinErrors
(
true
),
rego
.
StrictBuiltinErrors
(
true
),
)
)
resultSet
,
err
:=
r
.
Eval
(
context
.
Background
())
resultSet
,
err
:=
r
.
Eval
(
context
.
Background
())
...
@@ -121,11 +121,11 @@ func TestFromURLFunc(t *testing.T) {
...
@@ -121,11 +121,11 @@ func TestFromURLFunc(t *testing.T) {
for
_
,
test
:=
range
tests
{
for
_
,
test
:=
range
tests
{
t
.
Run
(
test
.
name
,
func
(
t
*
testing
.
T
)
{
t
.
Run
(
test
.
name
,
func
(
t
*
testing
.
T
)
{
DIDTransformerFuncs
:=
regofunc
.
NewDID
Transformer
Funcs
()
DIDTransformerFuncs
:=
regofunc
.
NewDID
Web
Funcs
()
r
:=
rego
.
New
(
r
:=
rego
.
New
(
rego
.
Query
(
test
.
regoQuery
),
rego
.
Query
(
test
.
regoQuery
),
rego
.
Function1
(
DIDTransformerFuncs
.
FromURL
Func
()),
rego
.
Function1
(
DIDTransformerFuncs
.
URLToDID
Func
()),
rego
.
StrictBuiltinErrors
(
true
),
rego
.
StrictBuiltinErrors
(
true
),
)
)
resultSet
,
err
:=
r
.
Eval
(
context
.
Background
())
resultSet
,
err
:=
r
.
Eval
(
context
.
Background
())
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment