Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
2a60c252
Commit
2a60c252
authored
Nov 10, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mvc) api, accept json body as POST data
parent
c92a65c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
ApiControllerBase.php
...e/mvc/app/controllers/OPNsense/Base/ApiControllerBase.php
+28
-0
No files found.
src/opnsense/mvc/app/controllers/OPNsense/Base/ApiControllerBase.php
View file @
2a60c252
...
...
@@ -51,6 +51,26 @@ class ApiControllerBase extends ControllerRoot
$this
->
cleanseOutput
=
false
;
}
/**
* parse raw json type content to POST data depending on content type
* (only for api calls)
* @return string
*/
private
function
parseJsonBodyData
()
{
switch
(
$this
->
request
->
getHeader
(
'CONTENT_TYPE'
))
{
case
'application/json'
:
case
'application/json;charset=UTF-8'
:
$jsonRawBody
=
$this
->
request
->
getJsonRawBody
(
true
);
if
(
empty
(
$this
->
request
->
getRawBody
())
&&
empty
(
$jsonRawBody
))
{
return
"Invalid JSON syntax"
;
}
$_POST
=
$jsonRawBody
;
break
;
}
return
null
;
}
/**
* Initialize API controller
*/
...
...
@@ -86,6 +106,7 @@ class ApiControllerBase extends ControllerRoot
if
(
$authenticator
->
authenticate
(
$apiKey
,
$apiSecret
))
{
$authResult
=
$authenticator
->
getLastAuthProperties
();
if
(
array_key_exists
(
'username'
,
$authResult
))
{
// check ACL if user is returned by the Authenticator object
$acl
=
new
ACL
();
if
(
!
$acl
->
isPageAccessible
(
$authResult
[
'username'
],
$_SERVER
[
'REQUEST_URI'
]))
{
$this
->
getLogger
()
->
error
(
"uri "
.
$_SERVER
[
'REQUEST_URI'
]
.
...
...
@@ -96,12 +117,19 @@ class ApiControllerBase extends ControllerRoot
// authentication + authorization successful.
// pre validate request and communicate back to the user on errors
$callMethodName
=
$dispatcher
->
getActionName
()
.
'Action'
;
$dispatchError
=
null
;
// check number of parameters using reflection
$object_info
=
new
\ReflectionObject
(
$this
);
$req_c
=
$object_info
->
getMethod
(
$callMethodName
)
->
getNumberOfRequiredParameters
();
if
(
$req_c
>
count
(
$dispatcher
->
getParams
()))
{
$dispatchError
=
'action '
.
$dispatcher
->
getActionName
()
.
' expects at least '
.
$req_c
.
' parameter(s)'
;
}
else
{
// if body is send as json data, parse to $_POST first
$dispatchError
=
$this
->
parseJsonBodyData
();
}
if
(
$dispatchError
!=
null
)
{
// send error to client
$this
->
response
->
setStatusCode
(
400
,
"Bad Request"
);
$this
->
response
->
setContentType
(
'application/json'
,
'UTF-8'
);
$this
->
response
->
setJsonContent
(
...
...
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