Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
rednerd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
orus-io
rednerd
Commits
b6ff4327d8a3
Commit
b6ff4327d8a3
authored
1 month ago
by
Florent Aide
Browse files
Options
Downloads
Patches
Plain Diff
rendering engines receive a context containing the username
parent
f6ef74a5e274
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/render.go
+28
-2
28 additions, 2 deletions
lib/render.go
with
28 additions
and
2 deletions
lib/render.go
+
28
−
2
View file @
b6ff4327
...
...
@@ -20,4 +20,6 @@
const
LogRenderBatchSize
=
1000
type
contextKey
int
var
(
...
...
@@ -23,5 +25,6 @@
var
(
ErrInvalidInput
=
errors
.
New
(
"invalid input"
)
userNameContextKey
contextKey
=
1
ErrInvalidInput
=
errors
.
New
(
"invalid input"
)
renderPipelineDuration
=
prometheus
.
NewSummaryVec
(
prometheus
.
SummaryOpts
{
...
...
@@ -228,7 +231,8 @@
reader
:=
rendering
.
NewDocumentReader
(
document
)
writer
:=
rendering
.
NewDocumentWriter
(
&
output
)
if
err
:=
pipeline
.
Render
(
ctx
,
writer
,
reader
);
err
!=
nil
{
userContext
:=
SetUsername
(
ctx
,
username
)
if
err
:=
pipeline
.
Render
(
userContext
,
writer
,
reader
);
err
!=
nil
{
return
nil
,
err
}
...
...
@@ -262,6 +266,28 @@
return
result
,
nil
}
// GetUsername allows to extract the username from a context
// this is intended to be used by engines to extract the username
// info.
func
GetUsername
(
ctx
context
.
Context
)
string
{
v
:=
ctx
.
Value
(
userNameContextKey
)
if
v
==
nil
{
return
""
}
res
,
ok
:=
v
.
(
string
)
if
!
ok
{
panic
(
"could not type assert on the userName from context"
)
}
return
res
}
// SetUsername set the given username in the given context and returns
// a derived context.
func
SetUsername
(
ctx
context
.
Context
,
username
string
)
context
.
Context
{
return
context
.
WithValue
(
ctx
,
userNameContextKey
,
username
)
}
func
init
()
{
prometheus
.
MustRegister
(
renderPipelineDuration
)
}
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