Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F12239081
JenkinsGateController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
JenkinsGateController.php
View Options
<?php
namespace
Nasqueron\Notifications\Http\Controllers\Gate
;
use
Nasqueron\Notifications\Events\JenkinsPayloadEvent
;
use
Illuminate\Support\Facades\Event
;
use
Illuminate\Support\Facades\Request
;
use
Symfony\Component\HttpFoundation\Response
;
class
JenkinsGateController
extends
GateController
{
///
/// Private members
///
/**
* The request content, as a structured data
*
* @var \stdClass
*/
private
$payload
;
/**
* The request content
*
* @var string
*/
private
$rawRequestContent
;
///
/// Request processing
///
/**
* Handles POST requests
*
* @param string $door The door, matching the project for this payload
* @return \Symfony\Component\HttpFoundation\Response
*/
public
function
onPost
(
string
$door
)
:
Response
{
// Parses the request and check if it's legit
$this
->
door
=
$door
;
$this
->
extractPayload
();
// Process the request
$this
->
logRequest
();
$this
->
onPayload
();
// Output
return
parent
::
renderReport
();
}
/**
* Extracts payload from the request
*/
protected
function
extractPayload
()
{
$request
=
Request
::
instance
();
$this
->
rawRequestContent
=
$request
->
getContent
();
$this
->
payload
=
json_decode
(
$this
->
rawRequestContent
);
}
public
function
getServiceName
()
:
string
{
return
"Jenkins"
;
}
///
/// Payload processing
///
protected
function
onPayload
()
{
$this
->
initializeReport
();
Event
::
dispatch
(
new
JenkinsPayloadEvent
(
$this
->
door
,
$this
->
payload
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Oct 11, 20:08 (14 h, 31 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3063919
Default Alt Text
JenkinsGateController.php (1 KB)
Attached To
Mode
rNOTIF Notifications center
Attached
Detach File
Event Timeline
Log In to Comment