Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
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
die_coolen_jungs
our_own_cloud_project
Commits
6ce1abfa
Commit
6ce1abfa
authored
9 years ago
by
Joas Schilling
Browse files
Options
Downloads
Patches
Plain Diff
Deprecate the OC_API constants in favor of the OCP ones
parent
4e58f489
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/private/api.php
+24
-8
24 additions, 8 deletions
lib/private/api.php
with
24 additions
and
8 deletions
lib/private/api.php
+
24
−
8
View file @
6ce1abfa
...
...
@@ -34,17 +34,33 @@ class OC_API {
/**
* API authentication levels
*/
/** @deprecated Use \OCP\API::GUEST_AUTH instead */
const
GUEST_AUTH
=
0
;
/** @deprecated Use \OCP\API::USER_AUTH instead */
const
USER_AUTH
=
1
;
/** @deprecated Use \OCP\API::SUBADMIN_AUTH instead */
const
SUBADMIN_AUTH
=
2
;
/** @deprecated Use \OCP\API::ADMIN_AUTH instead */
const
ADMIN_AUTH
=
3
;
/**
* API Response Codes
*/
/** @deprecated Use \OCP\API::RESPOND_UNAUTHORISED instead */
const
RESPOND_UNAUTHORISED
=
997
;
/** @deprecated Use \OCP\API::RESPOND_SERVER_ERROR instead */
const
RESPOND_SERVER_ERROR
=
996
;
/** @deprecated Use \OCP\API::RESPOND_NOT_FOUND instead */
const
RESPOND_NOT_FOUND
=
998
;
/** @deprecated Use \OCP\API::RESPOND_UNKNOWN_ERROR instead */
const
RESPOND_UNKNOWN_ERROR
=
999
;
/**
...
...
@@ -65,7 +81,7 @@ class OC_API {
* @param array $requirements
*/
public
static
function
register
(
$method
,
$url
,
$action
,
$app
,
$authLevel
=
OC
_
API
::
USER_AUTH
,
$authLevel
=
\
OC
P\
API
::
USER_AUTH
,
$defaults
=
array
(),
$requirements
=
array
())
{
$name
=
strtolower
(
$method
)
.
$url
;
...
...
@@ -106,7 +122,7 @@ class OC_API {
if
(
!
self
::
isAuthorised
(
$action
))
{
$responses
[]
=
array
(
'app'
=>
$action
[
'app'
],
'response'
=>
new
OC_OCS_Result
(
null
,
OC
_
API
::
RESPOND_UNAUTHORISED
,
'Unauthorised'
),
'response'
=>
new
OC_OCS_Result
(
null
,
\
OC
P\
API
::
RESPOND_UNAUTHORISED
,
'Unauthorised'
),
'shipped'
=>
OC_App
::
isShipped
(
$action
[
'app'
]),
);
continue
;
...
...
@@ -114,7 +130,7 @@ class OC_API {
if
(
!
is_callable
(
$action
[
'action'
]))
{
$responses
[]
=
array
(
'app'
=>
$action
[
'app'
],
'response'
=>
new
OC_OCS_Result
(
null
,
OC
_
API
::
RESPOND_NOT_FOUND
,
'Api method not found'
),
'response'
=>
new
OC_OCS_Result
(
null
,
\
OC
P\
API
::
RESPOND_NOT_FOUND
,
'Api method not found'
),
'shipped'
=>
OC_App
::
isShipped
(
$action
[
'app'
]),
);
continue
;
...
...
@@ -235,15 +251,15 @@ class OC_API {
private
static
function
isAuthorised
(
$action
)
{
$level
=
$action
[
'authlevel'
];
switch
(
$level
)
{
case
OC
_
API
::
GUEST_AUTH
:
case
\
OC
P\
API
::
GUEST_AUTH
:
// Anyone can access
return
true
;
break
;
case
OC
_
API
::
USER_AUTH
:
case
\
OC
P\
API
::
USER_AUTH
:
// User required
return
self
::
loginUser
();
break
;
case
OC
_
API
::
SUBADMIN_AUTH
:
case
\
OC
P\
API
::
SUBADMIN_AUTH
:
// Check for subadmin
$user
=
self
::
loginUser
();
if
(
!
$user
)
{
...
...
@@ -258,7 +274,7 @@ class OC_API {
}
}
break
;
case
OC
_
API
::
ADMIN_AUTH
:
case
\
OC
P\
API
::
ADMIN_AUTH
:
// Check for admin
$user
=
self
::
loginUser
();
if
(
!
$user
)
{
...
...
@@ -325,7 +341,7 @@ class OC_API {
*/
public
static
function
respond
(
$result
,
$format
=
'xml'
)
{
// Send 401 headers if unauthorised
if
(
$result
->
getStatusCode
()
===
self
::
RESPOND_UNAUTHORISED
)
{
if
(
$result
->
getStatusCode
()
===
\OCP\API
::
RESPOND_UNAUTHORISED
)
{
header
(
'WWW-Authenticate: Basic realm="Authorisation Required"'
);
header
(
'HTTP/1.0 401 Unauthorized'
);
}
...
...
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