Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Feeds
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
MickGe
Feeds
Commits
10c63ed5
Commit
10c63ed5
authored
5 years ago
by
Andrew Dolgov
Browse files
Options
Downloads
Patches
Plain Diff
pluginhost: add helper methods to get private/public pluginmethod endpoint URLs
parent
e46ed1ff
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
classes/pluginhost.php
+30
-0
30 additions, 0 deletions
classes/pluginhost.php
plugins/af_proxy_http/init.php
+1
-2
1 addition, 2 deletions
plugins/af_proxy_http/init.php
with
31 additions
and
2 deletions
classes/pluginhost.php
+
30
−
0
View file @
10c63ed5
...
@@ -491,4 +491,34 @@ class PluginHost {
...
@@ -491,4 +491,34 @@ class PluginHost {
function
get_owner_uid
()
{
function
get_owner_uid
()
{
return
$this
->
owner_uid
;
return
$this
->
owner_uid
;
}
}
// handled by classes/pluginhandler.php, requires valid session
function
get_method_url
(
$sender
,
$method
,
$params
)
{
return
get_self_url_prefix
()
.
"/backend.php?"
.
http_build_query
(
array_merge
(
[
"op"
=>
"pluginhandler"
,
"plugin"
=>
strtolower
(
get_class
(
$sender
)),
"pmethod"
=>
$method
],
$params
));
}
// WARNING: endpoint in public.php, exposed to unauthenticated users
function
get_public_method_url
(
$sender
,
$method
,
$params
)
{
if
(
$sender
->
is_public_method
(
$method
))
{
return
get_self_url_prefix
()
.
"/public.php?"
.
http_build_query
(
array_merge
(
[
"op"
=>
"pluginhandler"
,
"plugin"
=>
strtolower
(
get_class
(
$sender
)),
"pmethod"
=>
$method
],
$params
));
}
else
{
user_error
(
"get_public_method_url: requested method '
$method
' of '"
.
get_class
(
$sender
)
.
"' is private."
);
}
}
}
}
This diff is collapsed.
Click to expand it.
plugins/af_proxy_http/init.php
+
1
−
2
View file @
10c63ed5
...
@@ -141,8 +141,7 @@ class Af_Proxy_Http extends Plugin {
...
@@ -141,8 +141,7 @@ class Af_Proxy_Http extends Plugin {
}
}
}
}
return
get_self_url_prefix
()
.
"/public.php?op=pluginhandler&plugin=af_proxy_http&pmethod=imgproxy&url="
.
return
$this
->
host
->
get_public_method_url
(
$this
,
"imgproxy"
,
[
"url"
=>
$url
]);
urlencode
(
$url
);
}
}
}
}
}
}
...
...
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