Merge branch 'master' of git://github.com/colosa/processmaker into BUG-0000
This commit is contained in:
@@ -27,6 +27,51 @@
|
|||||||
* this file is used initialize main variables, redirect and dispatch all requests
|
* this file is used initialize main variables, redirect and dispatch all requests
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
function transactionLog($transactionName){
|
||||||
|
if (extension_loaded('newrelic')) {
|
||||||
|
$baseName="ProcessMaker";
|
||||||
|
|
||||||
|
//Application base name
|
||||||
|
newrelic_set_appname ($baseName);
|
||||||
|
|
||||||
|
|
||||||
|
//Custom parameters
|
||||||
|
if(defined("SYS_SYS")){
|
||||||
|
newrelic_add_custom_parameter ("workspace", SYS_SYS);
|
||||||
|
}
|
||||||
|
if(defined("SYS_LANG")){
|
||||||
|
newrelic_add_custom_parameter ("lang", SYS_LANG);
|
||||||
|
}
|
||||||
|
if(defined("SYS_SKIN")){
|
||||||
|
newrelic_add_custom_parameter ("skin", SYS_SKIN);
|
||||||
|
}
|
||||||
|
if(defined("SYS_COLLECTION")){
|
||||||
|
newrelic_add_custom_parameter ("collection", SYS_COLLECTION);
|
||||||
|
}
|
||||||
|
if(defined("SYS_TARGET")){
|
||||||
|
newrelic_add_custom_parameter ("target", SYS_TARGET);
|
||||||
|
}
|
||||||
|
if(defined("SYS_URI")){
|
||||||
|
newrelic_add_custom_parameter ("uri", SYS_URI);
|
||||||
|
}
|
||||||
|
if(defined("PATH_CORE")){
|
||||||
|
newrelic_add_custom_parameter ("path_core", PATH_CORE);
|
||||||
|
}
|
||||||
|
if(defined("PATH_DATA_SITE")){
|
||||||
|
newrelic_add_custom_parameter ("path_site", PATH_DATA_SITE);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Show correct transaction name
|
||||||
|
if(defined("SYS_SYS")){
|
||||||
|
newrelic_set_appname ("PM-".SYS_SYS.";$baseName");
|
||||||
|
}
|
||||||
|
if(defined("PATH_CORE")){
|
||||||
|
$transactionName=str_replace(PATH_CORE,"",$transactionName);
|
||||||
|
}
|
||||||
|
newrelic_name_transaction ($transactionName);
|
||||||
|
}
|
||||||
|
}
|
||||||
// Defining the PATH_SEP constant, he we are defining if the the path separator symbol will be '\\' or '/'
|
// Defining the PATH_SEP constant, he we are defining if the the path separator symbol will be '\\' or '/'
|
||||||
define( 'PATH_SEP', '/' );
|
define( 'PATH_SEP', '/' );
|
||||||
|
|
||||||
@@ -238,6 +283,7 @@ ini_set('session.cookie_lifetime', $timelife);
|
|||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$e_all = defined( 'E_DEPRECATED' ) ? E_ALL & ~ E_DEPRECATED : E_ALL;
|
$e_all = defined( 'E_DEPRECATED' ) ? E_ALL & ~ E_DEPRECATED : E_ALL;
|
||||||
$e_all = defined( 'E_STRICT' ) ? $e_all & ~ E_STRICT : $e_all;
|
$e_all = defined( 'E_STRICT' ) ? $e_all & ~ E_STRICT : $e_all;
|
||||||
$e_all = $config['debug'] ? $e_all : $e_all & ~ E_NOTICE;
|
$e_all = $config['debug'] ? $e_all : $e_all & ~ E_NOTICE;
|
||||||
@@ -325,6 +371,9 @@ if (Bootstrap::virtualURI( $_SERVER['REQUEST_URI'], $virtualURITable, $realPath
|
|||||||
$pluginFilename = PATH_PLUGINS . $pluginFolder . PATH_SEP . 'public_html' . PATH_SEP . $filePath;
|
$pluginFilename = PATH_PLUGINS . $pluginFolder . PATH_SEP . 'public_html' . PATH_SEP . $filePath;
|
||||||
|
|
||||||
if (file_exists( $pluginFilename )) {
|
if (file_exists( $pluginFilename )) {
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($pluginFilename);
|
||||||
|
|
||||||
Bootstrap::streamFile( $pluginFilename );
|
Bootstrap::streamFile( $pluginFilename );
|
||||||
}
|
}
|
||||||
die();
|
die();
|
||||||
@@ -347,6 +396,9 @@ if (Bootstrap::virtualURI( $_SERVER['REQUEST_URI'], $virtualURITable, $realPath
|
|||||||
$fileToBeStreamed = str_replace( "/skin/", PATH_CUSTOM_SKINS, $_SERVER['REQUEST_URI'] );
|
$fileToBeStreamed = str_replace( "/skin/", PATH_CUSTOM_SKINS, $_SERVER['REQUEST_URI'] );
|
||||||
|
|
||||||
if (file_exists( $fileToBeStreamed )) {
|
if (file_exists( $fileToBeStreamed )) {
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($fileToBeStreamed);
|
||||||
|
|
||||||
Bootstrap::streamFile( $fileToBeStreamed );
|
Bootstrap::streamFile( $fileToBeStreamed );
|
||||||
}
|
}
|
||||||
die();
|
die();
|
||||||
@@ -355,6 +407,8 @@ if (Bootstrap::virtualURI( $_SERVER['REQUEST_URI'], $virtualURITable, $realPath
|
|||||||
case 'jsMethod':
|
case 'jsMethod':
|
||||||
Bootstrap::parseURI( getenv( "REQUEST_URI" ) );
|
Bootstrap::parseURI( getenv( "REQUEST_URI" ) );
|
||||||
$filename = PATH_METHODS . SYS_COLLECTION . '/' . SYS_TARGET . '.js';
|
$filename = PATH_METHODS . SYS_COLLECTION . '/' . SYS_TARGET . '.js';
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($filename);
|
||||||
Bootstrap::streamFile( $filename );
|
Bootstrap::streamFile( $filename );
|
||||||
die();
|
die();
|
||||||
break;
|
break;
|
||||||
@@ -370,6 +424,9 @@ if (Bootstrap::virtualURI( $_SERVER['REQUEST_URI'], $virtualURITable, $realPath
|
|||||||
} else {
|
} else {
|
||||||
$realPath = explode( '?', $realPath );
|
$realPath = explode( '?', $realPath );
|
||||||
$realPath[0] .= strpos( basename( $realPath[0] ), '.' ) === false ? '.php' : '';
|
$realPath[0] .= strpos( basename( $realPath[0] ), '.' ) === false ? '.php' : '';
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($realPath[0]);
|
||||||
|
|
||||||
Bootstrap::streamFile( $realPath[0] );
|
Bootstrap::streamFile( $realPath[0] );
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
@@ -451,6 +508,8 @@ $oHeadPublisher = & headPublisher::getSingleton();
|
|||||||
if (! defined( 'PATH_DATA' ) || ! file_exists( PATH_DATA )) {
|
if (! defined( 'PATH_DATA' ) || ! file_exists( PATH_DATA )) {
|
||||||
// new installer, extjs based
|
// new installer, extjs based
|
||||||
define( 'PATH_DATA', PATH_C );
|
define( 'PATH_DATA', PATH_C );
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog(PATH_CONTROLLERS.'installer.php');
|
||||||
require_once (PATH_CONTROLLERS . 'installer.php');
|
require_once (PATH_CONTROLLERS . 'installer.php');
|
||||||
$controller = 'Installer';
|
$controller = 'Installer';
|
||||||
|
|
||||||
@@ -468,6 +527,9 @@ if (! defined( 'PATH_DATA' ) || ! file_exists( PATH_DATA )) {
|
|||||||
) )) {
|
) )) {
|
||||||
$installer = new $controller();
|
$installer = new $controller();
|
||||||
$installer->setHttpRequestData( $_REQUEST );
|
$installer->setHttpRequestData( $_REQUEST );
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($controllerAction);
|
||||||
|
|
||||||
$installer->call( $controllerAction );
|
$installer->call( $controllerAction );
|
||||||
} else {
|
} else {
|
||||||
$_SESSION['phpFileNotFound'] = $_SERVER['REQUEST_URI'];
|
$_SESSION['phpFileNotFound'] = $_SERVER['REQUEST_URI'];
|
||||||
@@ -512,6 +574,8 @@ if (defined( 'SYS_TEMP' ) && SYS_TEMP != '') {
|
|||||||
} else { //when we are in global pages, outside any valid workspace
|
} else { //when we are in global pages, outside any valid workspace
|
||||||
if (SYS_TARGET === 'newSite') {
|
if (SYS_TARGET === 'newSite') {
|
||||||
$phpFile = G::ExpandPath( 'methods' ) . SYS_COLLECTION . "/" . SYS_TARGET . '.php';
|
$phpFile = G::ExpandPath( 'methods' ) . SYS_COLLECTION . "/" . SYS_TARGET . '.php';
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($phpFile);
|
||||||
require_once ($phpFile);
|
require_once ($phpFile);
|
||||||
die();
|
die();
|
||||||
} else {
|
} else {
|
||||||
@@ -553,6 +617,8 @@ define( 'PATH_IMAGES_ENVIRONMENT_USERS', PATH_DATA_SITE . 'usersPhotographies' .
|
|||||||
define( 'SERVER_NAME', $_SERVER['SERVER_NAME'] );
|
define( 'SERVER_NAME', $_SERVER['SERVER_NAME'] );
|
||||||
define( 'SERVER_PORT', $_SERVER['SERVER_PORT'] );
|
define( 'SERVER_PORT', $_SERVER['SERVER_PORT'] );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// create memcached singleton
|
// create memcached singleton
|
||||||
Bootstrap::LoadClass( 'memcached' );
|
Bootstrap::LoadClass( 'memcached' );
|
||||||
$memcache = & PMmemcached::getSingleton( SYS_SYS );
|
$memcache = & PMmemcached::getSingleton( SYS_SYS );
|
||||||
@@ -706,6 +772,8 @@ if (substr( SYS_COLLECTION, 0, 8 ) === 'gulliver') {
|
|||||||
$phpFile = $aAux[0];
|
$phpFile = $aAux[0];
|
||||||
|
|
||||||
if ($extension != 'php') {
|
if ($extension != 'php') {
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($phpFile);
|
||||||
Bootstrap::streamFile( $phpFile );
|
Bootstrap::streamFile( $phpFile );
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
@@ -862,11 +930,16 @@ if (! defined( 'EXECUTE_BY_CRON' )) {
|
|||||||
*/
|
*/
|
||||||
if ($isControllerCall) { //Instance the Controller object and call the request method
|
if ($isControllerCall) { //Instance the Controller object and call the request method
|
||||||
$controller = new $controllerClass();
|
$controller = new $controllerClass();
|
||||||
$controller->setHttpRequestData( $_REQUEST );
|
$controller->setHttpRequestData( $_REQUEST );//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($controllerAction);
|
||||||
$controller->call( $controllerAction );
|
$controller->call( $controllerAction );
|
||||||
} elseif ($isRestRequest) {
|
} elseif ($isRestRequest) {
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($restConfig.$restApiClassPath.SYS_TARGET);
|
||||||
Bootstrap::dispatchRestService( SYS_TARGET, $restConfig, $restApiClassPath );
|
Bootstrap::dispatchRestService( SYS_TARGET, $restConfig, $restApiClassPath );
|
||||||
} else {
|
} else {
|
||||||
|
//NewRelic Snippet - By JHL
|
||||||
|
transactionLog($phpFile);
|
||||||
require_once $phpFile;
|
require_once $phpFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user