Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
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
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
8bfda8d4
Commit
8bfda8d4
authored
7 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Code comment
parent
78ebffe4
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
htdocs/api/class/api_access.class.php
+6
-6
6 additions, 6 deletions
htdocs/api/class/api_access.class.php
with
6 additions
and
6 deletions
htdocs/api/class/api_access.class.php
+
6
−
6
View file @
8bfda8d4
...
...
@@ -80,25 +80,25 @@ class DolibarrApiAccess implements iAuthenticate
{
dol_syslog($key.' - '.$val);
}*/
// api key can be provided in url with parameter api_key=xxx or ni header with header DOLAPIKEY:xxx
$api_key
=
''
;
if
(
isset
(
$_GET
[
'api_key'
]))
if
(
isset
(
$_GET
[
'api_key'
]))
{
// TODO Add option to disable use of api key on url. Return errors if used.
$api_key
=
$_GET
[
'api_key'
];
// For backward compatibility
}
if
(
isset
(
$_GET
[
'DOLAPIKEY'
]))
if
(
isset
(
$_GET
[
'DOLAPIKEY'
]))
{
// TODO Add option to disable use of api key on url. Return errors if used.
$api_key
=
$_GET
[
'DOLAPIKEY'
];
// With GET method
}
if
(
isset
(
$_SERVER
[
'HTTP_DOLAPIKEY'
]))
if
(
isset
(
$_SERVER
[
'HTTP_DOLAPIKEY'
]))
// Param DOLAPIKEY in header can be read with HTTP_DOLAPIKEY
{
$api_key
=
$_SERVER
[
'HTTP_DOLAPIKEY'
];
// With header method (recommanded)
}
if
(
$api_key
)
if
(
$api_key
)
{
$sql
=
"SELECT u.login, u.datec, u.api_key, "
;
$sql
.
=
" u.tms as date_modification, u.entity"
;
...
...
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