Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e6f0c1f3
Commit
e6f0c1f3
authored
Aug 19, 2016
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add api.Secret type
parent
cfb90242
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
21 deletions
+59
-21
internal/api/api.go
internal/api/api.go
+14
-21
internal/api/secret.go
internal/api/secret.go
+45
-0
No files found.
internal/api/api.go
View file @
e6f0c1f3
...
...
@@ -15,26 +15,22 @@ import (
"github.com/dgrijalva/jwt-go"
)
const
(
// Custom content type for API responses, to catch routing / programming mistakes
ResponseContentType
=
"application/vnd.gitlab-workhorse+json"
// Block size for HMAC SHA256
numSecretBytes
=
64
)
// Custom content type for API responses, to catch routing / programming mistakes
const
ResponseContentType
=
"application/vnd.gitlab-workhorse+json"
type
API
struct
{
Client
*
http
.
Client
URL
*
url
.
URL
Version
string
Secret
File
string
Client
*
http
.
Client
URL
*
url
.
URL
Version
string
Secret
*
Secret
}
func
NewAPI
(
myURL
*
url
.
URL
,
version
,
secretFile
string
,
roundTripper
*
badgateway
.
RoundTripper
)
*
API
{
return
&
API
{
Client
:
&
http
.
Client
{
Transport
:
roundTripper
},
URL
:
myURL
,
Version
:
version
,
Secret
File
:
secretFile
,
Client
:
&
http
.
Client
{
Transport
:
roundTripper
},
URL
:
myURL
,
Version
:
version
,
Secret
:
&
Secret
{
File
:
secretFile
}
,
}
}
...
...
@@ -130,18 +126,15 @@ func (api *API) newRequest(r *http.Request, body io.Reader, suffix string) (*htt
// configurations (Passenger) to solve auth request routing problems.
authReq
.
Header
.
Set
(
"Gitlab-Workhorse"
,
api
.
Version
)
token
:=
jwt
.
NewWithClaims
(
jwt
.
SigningMethodHS256
,
jwt
.
StandardClaims
{
Issuer
:
"gitlab-workhorse"
})
secretBytes
,
err
:=
ioutil
.
ReadFile
(
api
.
SecretFile
)
secretBytes
,
err
:=
api
.
Secret
.
Bytes
()
if
err
!=
nil
{
return
nil
,
fmt
.
Errorf
(
"read secretFile: %v"
,
err
)
}
if
n
:=
len
(
secretBytes
);
n
!=
numSecretBytes
{
return
nil
,
fmt
.
Errorf
(
"expected %d bytes in %s, found %d"
,
numSecretBytes
,
api
.
SecretFile
,
n
)
return
nil
,
fmt
.
Errorf
(
"newRequest: %v"
,
err
)
}
token
:=
jwt
.
NewWithClaims
(
jwt
.
SigningMethodHS256
,
jwt
.
StandardClaims
{
Issuer
:
"gitlab-workhorse"
})
tokenString
,
err
:=
token
.
SignedString
(
secretBytes
)
if
err
!=
nil
{
return
nil
,
fmt
.
Errorf
(
"sign JWT: %v"
,
err
)
return
nil
,
fmt
.
Errorf
(
"
newRequest:
sign JWT: %v"
,
err
)
}
authReq
.
Header
.
Set
(
"Gitlab-Workhorse-Api-Request"
,
tokenString
)
...
...
internal/api/secret.go
0 → 100644
View file @
e6f0c1f3
package
api
import
(
"fmt"
"io/ioutil"
"sync"
)
const
numSecretBytes
=
64
type
Secret
struct
{
File
string
bytes
[]
byte
sync
.
RWMutex
}
func
(
s
*
Secret
)
Bytes
()
([]
byte
,
error
)
{
if
bytes
:=
s
.
getBytes
();
bytes
!=
nil
{
return
bytes
,
nil
}
return
s
.
setBytes
()
}
func
(
s
*
Secret
)
getBytes
()
[]
byte
{
s
.
RLock
()
defer
s
.
RUnlock
()
return
s
.
bytes
}
func
(
s
*
Secret
)
setBytes
()
([]
byte
,
error
)
{
bytes
,
err
:=
ioutil
.
ReadFile
(
s
.
File
)
if
err
!=
nil
{
return
nil
,
fmt
.
Errorf
(
"read Secret.File: %v"
,
err
)
}
if
n
:=
len
(
bytes
);
n
!=
numSecretBytes
{
return
nil
,
fmt
.
Errorf
(
"expected %d bytes in %s, found %d"
,
bytes
,
s
.
File
,
n
)
}
s
.
Lock
()
defer
s
.
Unlock
()
s
.
bytes
=
bytes
return
bytes
,
nil
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment