Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AuthSCH - Client
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Szabó Gergely
AuthSCH - Client
Commits
f18c3b13
Commit
f18c3b13
authored
11 years ago
by
Janega Zoltán
Browse files
Options
Downloads
Patches
Plain Diff
curl átalakítása
parent
c3411afa
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
php/AuthSCHClient.class.php
+24
-22
24 additions, 22 deletions
php/AuthSCHClient.class.php
with
24 additions
and
22 deletions
php/AuthSCHClient.class.php
+
24
−
22
View file @
f18c3b13
...
...
@@ -7,7 +7,6 @@ class AuthSCHClient {
private
static
$password
=
""
;
// your application's password
private
static
$scope
=
""
;
// wanted data, separated with plus sign. For more information see your website profile on auth.sch.bme.hu.
private
$curl
=
null
;
// curl session
private
$tokens
;
public
function
__construct
(
$checkLogin
=
true
)
{
...
...
@@ -33,19 +32,22 @@ class AuthSCHClient {
}
private
function
curlSetOpt
(
$urlPart
,
$data
)
{
curl_setopt
(
$this
->
curl
,
CURLOPT_URL
,
self
::
$host
.
$urlPart
);
curl_setopt
(
$this
->
curl
,
CURLOPT_HEADER
,
0
);
curl_setopt
(
$this
->
curl
,
CURLOPT_USERPWD
,
self
::
$username
.
":"
.
self
::
$password
);
curl_setopt
(
$this
->
curl
,
CURLOPT_TIMEOUT
,
30
);
curl_setopt
(
$this
->
curl
,
CURLOPT_POST
,
1
);
curl_setopt
(
$this
->
curl
,
CURLOPT_POSTFIELDS
,
http_build_query
(
$data
));
curl_setopt
(
$this
->
curl
,
CURLOPT_RETURNTRANSFER
,
TRUE
);
private
function
curlExec
(
$urlPart
,
$data
)
{
$ch
=
curl_init
();
curl_setopt
(
$ch
,
CURLOPT_URL
,
self
::
$host
.
$urlPart
);
curl_setopt
(
$ch
,
CURLOPT_HEADER
,
0
);
if
(
$urlPart
!=
"oauth2/resource"
)
curl_setopt
(
$curl
,
CURLOPT_USERPWD
,
self
::
$username
.
":"
.
self
::
$password
);
curl_setopt
(
$ch
,
CURLOPT_TIMEOUT
,
30
);
curl_setopt
(
$ch
,
CURLOPT_POST
,
1
);
curl_setopt
(
$ch
,
CURLOPT_POSTFIELDS
,
http_build_query
(
$data
));
curl_setopt
(
$ch
,
CURLOPT_RETURNTRANSFER
,
TRUE
);
$ret
=
curl_exec
(
$ch
);
curl_close
(
$ch
);
return
$ret
;
}
private
function
authenticate
()
{
$this
->
curl
=
curl_init
();
// before authentication & authorization
if
(
!
isset
(
$_GET
[
'code'
]))
{
// get token
...
...
@@ -53,33 +55,33 @@ class AuthSCHClient {
'grant_type'
=>
'client_credentials'
,
);
$this
->
curl
SetOpt
(
"oauth2/token"
,
$data
);
$ch
=
$this
->
curl
Exec
(
"oauth2/token"
,
$data
);
$data
=
array
(
'access_token'
=>
json_decode
(
curl_exec
(
$this
->
curl
)
)
->
access_token
,
'access_token'
=>
json_decode
(
$ch
)
->
access_token
,
);
$this
->
curl
SetOpt
(
"oauth2/resource"
,
$data
);
$ch
=
$this
->
curl
Exec
(
"oauth2/resource"
,
$data
);
// check api access & redirect to auth.sch.bme.hu for authorization
if
(
json_decode
(
curl_exec
(
$this
->
curl
))
->
success
==
true
)
header
(
"Location: "
.
$host
.
"site/login?response_type=code&client_id&"
.
self
::
$username
.
"&state="
.
sha1
(
$_SERVER
[
'REMOTE_ADDR'
]
.
$_SERVER
[
'HTTP_USER_AGENT'
])
.
"&scope="
.
self
::
$scope
);
if
(
$res
!=
null
&&
isset
(
$res
->
success
)
&&
$res
->
success
==
true
)
header
(
"Location: "
.
self
::
$host
.
"site/login?response_type=code&client_id&"
.
self
::
$username
.
"&state="
.
sha1
(
$_SERVER
[
'REMOTE_ADDR'
]
.
$_SERVER
[
'HTTP_USER_AGENT'
])
.
"&scope="
.
self
::
$scope
);
else
throw
new
Exception
(
"error during api check"
);
}
else
{
$data
=
array
(
'grant_type'
=>
'authorization_code'
,
'code'
=>
$_GET
[
'code'
],
);
$this
->
curl
SetOpt
(
"oauth2/token"
,
$data
);
$tokens
=
json_decode
(
curl_exec
(
$this
->
curl
)
);
$ch
=
$this
->
curl
Exec
(
"oauth2/token"
,
$data
);
$tokens
=
json_decode
(
$ch
);
if
(
$tokens
===
null
||
!
isset
(
$tokens
->
access_token
)
||
empty
(
$tokens
->
access_token
))
throw
new
Exception
(
"invalid token data"
);
$this
->
tokens
=
$tokens
;
}
curl_close
(
$this
->
curl
);
}
}
\ No newline at end of file
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