source: trunk/workflow/inc/class.run_activity.inc.php @ 6231

Revision 6231, 35.5 KB checked in by viani, 12 years ago (diff)

Ticket #2760 - Forçar display_erros off na execução de atividades do workflow

  • Property svn:executable set to *
Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare                                                               *
4        * http://www.egroupware.org                                                *
5        * --------------------------------------------                             *
6        *  This program is free software; you can redistribute it and/or modify it *
7        *  under the terms of the GNU General Public License as published by the   *
8        *  Free Software Foundation; either version 2 of the License, or (at your  *
9        *  option) any later version.                                              *
10        \**************************************************************************/
11
12        require_once(dirname(__FILE__) . SEP . 'common.inc.php');                                /* including common deifinitions */
13        require_once(dirname(__FILE__) . SEP . 'class.WorkflowUtils.inc.php'  ); /* superclass source code       */
14        require_once(dirname(__FILE__) . SEP . 'class.basecontroller.inc.php' ); /* module controller            */
15        require_once(dirname(__FILE__) . SEP . 'class.basemodel.inc.php'      ); /* module logic                 */
16
17        /**
18         * @package Workflow
19         * @author Mauricio Luiz Viani - viani@celepar.pr.gov.br
20         * @author Sidnei Augusto Drovetto Jr. - drovetto@gmail.com
21         * @author Carlos Eduardo Nogueira Goncalves - cadu.br@gmail.com
22         * @license GPL
23         * @license http://www.gnu.org/copyleft/gpl.html GPL
24     */
25        class run_activity extends WorkflowUtils
26        {       
27                /**
28                 * @var array  $public_functions func
29                 * @access public
30                 */
31                var $public_functions = array(
32                        'go'    => true,
33                        'goAjax'  => true
34                );
35                /**
36                 * @var object $runtime Runtime Object from the workflow engine
37                 * @access public
38                 */
39                var $runtime;
40                // This is the object we'll be running to obtain the rigth activity
41                //var $base_activity;
42                //This is the right activity object
43                /**
44                 * @var object $activity Activity engine object.
45                 * @access public
46                 */
47                var $activity;
48                /**
49                 * @var object $process Process engine object. Used to retrieve at least paths and configuration values
50                 * @access public
51                 */
52                var $process;   
53                /**
54                 * @var object $GUI  GUI engine object. Act carefully with it.
55                 * @access public
56                 */
57                var $GUI;
58                /**
59                 * @var array $message a message array
60                 * @access public
61                 */
62                var $message = Array();
63                /**
64                 * @var object $categories categorie object for categories
65                 * @access public
66                 */
67                var $categories;
68                /**
69                 * @var array $conf
70                 * @access public
71                 */
72                var $conf = array();   
73                /**
74                 * @var $wf_template local activity template
75                 * @access public
76                 */
77                var $wf_template;
78                /**
79                 * @var object $instance
80                 * @access public
81                 */
82                var $instance;
83                /**
84                 * @var object $activity_type The type of activity
85                 * @access public
86                 */
87                var $activity_type;
88                // then we retain all usefull vars as members, to make them avaible in user's source code
89                // theses are data which can be set before the user code and which are not likely to change because of the user code
90                /**
91                 * @var int $process_id The process id
92                 * @access public
93                 */
94                var $process_id;
95                /**
96                 * @var int $activity_id The activity id
97                 * @access public
98                 */
99                var $activity_id;
100                /**
101                 * @var int $process_name The process name
102                 * @access public
103                 */
104                var $process_name;
105                /**
106                 * @var int $process_version The process_version
107                 * @access public
108                 */
109                var $process_version;
110                /**
111                 * @var int $activity_name The process id
112                 * @access public
113                 */
114                var $activity_name;
115                /**
116                 * @var int $user_name The user name
117                 * @access public
118                 */
119                var $user_name;
120                /**
121                 * @var int $view_activity activity id of the view activity avaible for this process
122                 * @access public
123                 */
124                var $view_activity;
125                // theses 4 vars aren't avaible for the user code, they're set only after this user code was executed           
126                /**
127                 * @var int $instance_id Instance id
128                 * @access public
129                 */
130                var $instance_id=0;
131                /**
132                 * @var string $instance_name Instance name
133                 * @access public
134                 */
135                var $instance_name='';
136                /**
137                 * @var int $instance_owner Instance owner id
138                 * @access public
139                 */
140                var $instance_owner=0;
141                /**
142                 * @var string $owner_name Owner name
143                 * @access public
144                 */
145                var $owner_name='';
146               
147                /**
148                 * @var bool $print_mode print mode
149                 * @access public
150                 */
151                var $print_mode = false;
152                /**
153                 * @var bool $enable_print_mode print mode
154                 * @access public
155                 */
156                var $enable_print_mode = false;
157               
158                /**
159                 * @var array $act_role_names of roles associated with the activity, usefull for lists of users associated with theses roles
160                 * @access public       
161                 */
162                var $act_role_names= Array();
163               
164                /**
165                 * @var array $agents Array of ui_agent objects
166                 * @access public
167                 */
168                var $agents = Array();
169
170                /**
171                 * @var object $smarty holds a Smarty instance
172                 * @access public
173                 */
174                var $smarty;               
175                /**
176                 * @var array $wf holds a global environment vector
177                 * @access public
178                 */
179                var $wf;                   
180                /**
181                 * @var $download_mode activates download mode
182                 * @access public
183                 */
184                var $download_mode;       
185                /**
186                 * @var string $_template_name holds the template's file name
187                 * @access public
188                 */
189                var $_template_name = null;
190                /**
191                 * @var bool Indicates wether the current instance is a child instance or not
192         * @access public
193         */
194                var $isChildInstance = false;
195                /**
196                 * @var object Stores a 'workflow_smarty' object
197         * @access private
198         */
199                private $workflowSmarty = null;
200                /**
201                 * @var object Log Object
202         * @access private
203         */
204                private $logger = null;
205
206                /**
207                 * Constructor
208                 *
209                 * @access public
210                 */
211                function run_activity()
212                {
213                        parent::WorkflowUtils();
214
215                        /**
216                         * We should always use newInstance to instantiate
217                         * 'workflow_wfruntime'
218                         */
219                        $this->runtime                  = &Factory::newInstance('workflow_wfruntime');
220                        $this->runtime->setDebug(_DEBUG);
221                        $this->GUI                              = &Factory::getInstance('workflow_gui');
222                        $this->categories               = &Factory::getInstance('categories');
223
224                        $this->workflowSmarty   = &Factory::getInstance('workflow_smarty', false);
225
226                        // never configure a log of type "firebug" here. This will make goAjax stop running well =(
227                        $this->logger                   = &Factory::getInstance('Logger', array('file'));
228
229                        // TODO: open a new connection to the database under a different username to allow privilege handling on tables
230                        unset($this->db);
231                }
232
233                /**
234                  * This function is used to run all activities for specified instances. it could be interactive activities
235                  * or automatic activities. this second case is the reason why we return some values
236                  * @param int $activityId is the activity_id it run
237                  * @param int $iid is the instance id it run for
238                  * @param $auto is true by default
239                  * @return mixed AN ARRAY, or at least true or false. This array can contain :
240                  * a key 'failure' with an error string the engine will retrieve in instance error messages in case of
241                  *     failure (this will mark your execution as Bad),
242                  * a key 'debug' with a debug string the engine will retrieve in instance error messages,
243                  */
244                function go($activity_id=0, $iid=0, $auto=0)
245                {
246                        $totalTime = microtime(true);
247
248                        $result=Array();
249
250                        if ($iid)
251                        {
252                                $_REQUEST['iid'] = $iid;
253                        }
254                        $iid = $_REQUEST['iid'];
255
256                        //$activity_id is set when we are in auto mode. In interactive mode we get if from POST or GET
257                        if (!$activity_id)
258                        {
259                                $activity_id    = (int)get_var('activity_id', array('GET','POST'), 0);
260                        }
261
262                        // load activity and instance
263                        if (!$activity_id)
264                        {
265                                $result['failure'] =  $this->runtime->fail(lang('Cannot run unknown activity'), true, _DEBUG, $auto);
266                                return $result;
267                        }
268
269                        //initalising activity and instance objects inside the WfRuntime object
270                        if (!($this->runtime->loadRuntime($activity_id,$iid)))
271                        {
272                                $result['failure'] = $this->runtime->fail(lang('Cannot run the activity'), true, _DEBUG, $auto);
273                                return $result;
274                        }
275
276                        $activity =& $this->runtime->getActivity($activity_id, true, true);
277                        $this->activity =& $activity;
278                        // the instance is avaible with $instance or $this->instance
279                        // note that for standalone activities this instance can be an empty instance object, but false is a bad value
280                        //$this->instance =& $this->runtime->loadInstance($iid);
281
282                        // HERE IS A BIG POINT: we map the instance to a runtime object
283                        // user code will manipulate a stance, thinking it's an instance, but it is
284                        // in fact a WfRuntime object, mapping all instance functions
285                        $this->instance =& $this->runtime;
286                        $instance =& $this->instance;
287                        $GLOBALS['workflow']['wf_runtime'] =& $this->runtime;
288                        if (!($instance))
289                        {
290                                $result['failure'] = $this->runtime->fail(lang('Cannot run the activity without instance'), true, _DEBUG, $auto);
291                                return $result;
292                        }
293                        $this->instance_id = $instance->getInstanceId();
294
295                        // load process
296                        $this->process =& $this->runtime->getProcess();
297                        if (!($this->process))
298                        {
299                                $result['failure'] = $this->runtime->fail(lang('Cannot run the activity without her process').$instance, true, _DEBUG, $auto);
300                                return $result;
301                        }
302
303                        //set some global variables needed
304                        $GLOBALS['workflow']['__leave_activity']=false;
305                        $GLOBALS['user'] = $GLOBALS['phpgw_info']['user']['account_id'];
306
307                        //load role names, just an information
308                        $this->act_role_names = $activity->getActivityRoleNames();
309
310                        //set some other usefull vars
311                        $this->activity_type    = $activity->getType();
312                        $this->process_id       = $activity->getProcessId();
313                        $this->activity_id      = $activity_id;
314                        $this->process_name     = $this->process->getName();
315                        $this->process_version  = $this->process->getVersion();
316                        $this->activity_name    = $activity->getName();
317                        $this->user_name                = $GLOBALS['phpgw']->accounts->id2name($GLOBALS['user']);
318                        $this->view_activity    = $this->GUI->gui_get_process_view_activity($this->process_id);
319
320                        //we set them in $GLOBALS['workflow'] as well
321                        $GLOBALS['workflow']['wf_activity_type']                        =& $this->activity_type;
322                        $GLOBALS['workflow']['wf_process_id']                           =& $this->process_id;
323                        $GLOBALS['workflow']['wf_activity_id']                          =& $this->activity_id;
324                        $GLOBALS['workflow']['wf_process_name']                         =& $this->process_name;
325                        $GLOBALS['workflow']['wf_normalized_name']                      =  $this->process->getNormalizedName();
326                        $GLOBALS['workflow']['wf_process_version']                      =& $this->process_version;
327                        $GLOBALS['workflow']['wf_activity_name']                        =& $this->activity_name;
328                        $GLOBALS['workflow']['wf_user_name']                            =& $this->user_name;
329                        $GLOBALS['workflow']['wf_user_id']                                      =& $GLOBALS['user'];
330                        $GLOBALS['workflow']['wf_view_activity']                        =& $this->view_activity;
331                        $GLOBALS['workflow']['wf_webserver_url']                        = $GLOBALS['phpgw_info']['server']['webserver_url'];
332                        $GLOBALS['workflow']['wf_workflow_path']                        = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'workflow';
333                        $GLOBALS['workflow']['wf_resources_path']                       = $GLOBALS['phpgw_info']['server']['webserver_url'] . SEP . 'workflow/redirect.php?pid=' . $this->process_id . '&file=';
334                        $GLOBALS['workflow']['wf_default_resources_path']       = Factory::getInstance('TemplateServer')->generateLink('processes');
335                        $GLOBALS['workflow']['wf_workflow_resources_path']      = Factory::getInstance('TemplateServer')->generateLink('');
336                        $GLOBALS['workflow']['wf_activity_url']                         = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'index.php?menuaction=workflow.'.get_class($this).'.go&activity_id='.$activity_id;
337                        $GLOBALS['workflow']['wf_user_cnname']                          = Factory::getInstance('WorkflowLDAP')->getName($GLOBALS['user']);
338                        $GLOBALS['workflow']['wf_back_link']                            = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'workflow'.SEP.'index.php?start_tab=1';
339                        $GLOBALS['workflow']['wf_js_path']                                      = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'workflow'.SEP.'js'.SEP.'jscode';
340                        $GLOBALS['workflow']['wf_user_activities']                      = $this->GUI->gui_list_user_activities($GLOBALS['user'], '0', '-1', 'ga.wf_name__ASC', '', '', false, true, true, true, '');
341                        if ($iid)
342                                $GLOBALS['workflow']['wf_instance_url'] = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'index.php?menuaction=workflow.'.get_class($this).'.go&activity_id='.$activity_id."&iid=".$iid;
343                        else
344                                unset($GLOBALS['workflow']['wf_instance_url']);
345                        $wf =& $GLOBALS['workflow'];
346
347                        /* path to the local functions developed by Celepar */
348                        $functions = PHPGW_SERVER_ROOT . SEP . 'workflow' . SEP . 'inc' . SEP . 'local' . SEP . 'functions' . SEP . 'local.functions.php';
349
350                        /* activate local functions */
351                        require_once($functions);
352
353                        //get configuration options with default values if no init was done before
354                        $myconf = array(
355                                'execute_activities_in_debug_mode'      => 0,
356                                'execute_activities_using_secure_connection' => 0
357                        );
358                        //this will give use asked options and som others used by WfRuntime
359                        $this->conf =& $this->runtime->getConfigValues($myconf);
360                        if ($this->conf['execute_activities_using_secure_connection'])
361                        {
362                                if (($GLOBALS['phpgw_info']['server']['use_https'] > 0) && ($_SERVER['HTTPS'] != 'on') && (!isset($GLOBALS['workflow']['job']['processID'])))
363                                {
364                                        header("Location: https://{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}");
365                                        exit;
366                                }
367                        }
368
369                        if ($auto && (!$this->isChildInstance) && $activity->isInteractive())
370                        {
371                                $actualUser = $GLOBALS['user'];
372                                $actualUserGroups = $_SESSION['phpgw_info']['workflow']['user_groups'];
373                                foreach ($instance->instance->activities as $actTmp)
374                                {
375                                        if ($actTmp['wf_activity_id'] == $activity_id)
376                                        {
377                                                $newUser = $actTmp['wf_user'];
378                                                break;
379                                        }
380                                }
381
382                                /* pretend to be the user */
383                                $_SESSION['phpgw_info']['workflow']['user_groups'] = galaxia_retrieve_user_groups($newUser);
384                                $_SESSION['phpgw_info']['workflow']['account_id'] = $newUser;
385                                $GLOBALS['phpgw_info']['user']['account_id'] = $newUser;
386                                $GLOBALS['workflow']['wf_user_id'] = $newUser;
387                                $GLOBALS['user'] = $newUser;
388
389                                /* check some permissions */
390                                if (($newUser == '*') || (!$this->runtime->checkUserRun($newUser)) || (Factory::getInstance('WorkflowLDAP')->getName($newUser) === false))
391                                {
392                                        $_SESSION['phpgw_info']['workflow']['user_groups'] = $actualUserGroups;
393                                        $_SESSION['phpgw_info']['workflow']['account_id'] = $actualUser;
394                                        $GLOBALS['phpgw_info']['user']['account_id'] = $actualUser;
395                                        $GLOBALS['workflow']['wf_user_id'] = $actualUser;
396                                        $GLOBALS['user'] = $actualUser;
397
398                                        return false;
399                                }
400                                $smarty = Factory::getInstance('process_smarty');
401                        }
402
403                        // run the activity
404                        //interactive section
405                        if (!$auto && $activity->isInteractive())
406                        {
407
408                                $this->print_mode = get_var('print_mode', array('POST','GET'), false);
409                                $this->download_mode = get_var('download_mode', array('POST','GET'), false);
410
411                                $smarty = Factory::getInstance('process_smarty');
412
413                                $smarty->template_dir  = GALAXIA_PROCESSES.SEP.$this->process->getNormalizedName().SEP.'code'.SEP.'templates';
414                                $smarty->compile_dir   = GALAXIA_PROCESSES.SEP.$this->process->getNormalizedName().SEP.'smarty'.SEP.'compiled';
415                                $smarty->config_dir    = GALAXIA_PROCESSES.SEP.$this->process->getNormalizedName().SEP.'code'.SEP.'templates';
416                                $smarty->cache_dir     = GALAXIA_PROCESSES.SEP.$this->process->getNormalizedName().SEP.'smarty'.SEP.'cache';
417                                $smarty->plugins_dir[] = PHPGW_SERVER_ROOT.SEP.'workflow'.SEP.'inc'.SEP.'smarty'.SEP.'wf_plugins';
418
419                                $GLOBALS['phpgw']->template =& $smarty;
420                                $this->wf_template =& $smarty;
421                                $_template_name = null;
422
423                                //set resource path to use in templates
424                                $smarty->assign('wf_resources_path',$GLOBALS['workflow']['wf_resources_path']);
425                                $smarty->assign('wf_default_resources_path', $GLOBALS['workflow']['wf_default_resources_path']);
426                                $smarty->assign('wf_workflow_resources_path', $GLOBALS['workflow']['wf_workflow_resources_path']);
427                                $smarty->assign('wf_workflow_path',$GLOBALS['workflow']['wf_workflow_path']);
428                                $smarty->assign('wf_js_path',$GLOBALS['workflow']['wf_js_path']);
429                                $smarty->assign('wf_back_link',$GLOBALS['workflow']['wf_back_link']);
430                                $smarty->assign('wf_activity_url',$GLOBALS['workflow']['wf_activity_url']);
431
432                                /* register the prefilter smarty plugin wf_default_template */
433                                $smarty->load_filter('pre', 'wf_default_template');
434                        }
435
436                        if ($this->conf['execute_activities_in_debug_mode'])
437                        {
438                                ini_set('display_errors',true);
439                                error_reporting(E_ALL & ~E_NOTICE);
440                        } else {
441                                ini_set('display_errors',false);
442                        }
443
444                        /* BEGIN WORKFLOW MVC SETTINGS */
445                        $env = array();                                            //create settings vector
446                        $env['view']          =& $smarty;                          //view layer instance
447                        $env['template_file'] =& $_template_name;                  //template file to be shown
448                        $env['dao']                       =& Factory::newInstance('wf_db');    //data access object instance
449                        $env['workflow']      =& $GLOBALS['workflow'];             //workflow environment information
450                        $env['instance']      =& $instance;                        //process manager instance
451                        $env['activity']      =& $activity;                        //activity manager instance
452                        $security             =& Factory::newInstance('SecurityUtils');              //input sanitizer class
453                        $env['request']       =& $security->process($_REQUEST);    //sanitizes input data from client
454                        $env['factory']       =& Factory::getInstance('ProcessWrapperFactory');  //instantiation controller class
455                        $env['natural']           =& Factory::newInstance('wf_natural');   //data access object instance for mainframe
456                        /* END WORKFLOW MVC SETTINGS */
457
458                        $GLOBALS['workflow_env'] = &$env;
459
460                        /**
461                         * [__leave_activity] is setted if needed in the xxx_pre code or by the user in his code
462                         * HERE the user code is 'executed'. Note that we do not use include_once or require_once because
463                         * it could the same code several times with automatic activities looping in the graph and it still
464                         * need to be executed
465                         */
466                        $_engineProcessCodeDirectory = GALAXIA_PROCESSES . SEP . $this->process->getNormalizedName(). SEP . 'code';
467                        $_engineCompilerDirectory = GALAXIA_LIBRARY . SEP . 'compiler';
468                        $_engineFiles = array();
469
470                        /* generate the list of needed files */
471                        $_engineFiles[] = "{$_engineCompilerDirectory}/_shared_pre.php";
472                        $_engineFiles[] = "{$_engineProcessCodeDirectory}/shared.php";
473                        $_engineFiles[] = "{$_engineCompilerDirectory}/{$activity->getType()}_pre.php";
474                        if ($activity->getAgents() !== false)
475                                $_engineFiles[] = "{$_engineCompilerDirectory}/agents_pre.php";
476                        $_engineFiles[] = "{$_engineProcessCodeDirectory}/activities/{$activity->getNormalizedName()}.php";
477                        $_engineFiles[] = "{$_engineCompilerDirectory}/{$activity->getType()}_pos.php";
478                        if ($activity->getAgents() !== false)
479                                $_engineFiles[] = "{$_engineCompilerDirectory}/agents_pos.php";
480                        $_engineFiles[] = "{$_engineCompilerDirectory}/_shared_pos.php";
481
482                        /* check if the required files exists */
483                        foreach ($_engineFiles as $_engineFile)
484                                if (!file_exists($_engineFile))
485                                        return array('failure' => $this->runtime->fail(lang('the following file could not be found: %1', $_engineFile), true, _DEBUG));
486
487                        /* activate the security policy */
488                        Factory::getInstance('WorkflowSecurity')->enableSecurityPolicy();
489
490                        /**
491                         * Here we are going to use our new Security static class.
492                         * From now, the factory frontend (static) will forward
493                         * the messages for the process factory instead of Workflow
494                         * factory.
495                        */
496                        Security::enable();
497
498                        /* include the files */
499                        $processTime = microtime(true);
500
501                        foreach ($_engineFiles as $_engineFile)
502                                require $_engineFile;
503
504                        $processTime = (microtime(true) - $processTime);
505
506                        unset($GLOBALS['workflow_env']);
507
508                        /* check if the developer wants to user the download mode */
509                        if (isset($GLOBALS['workflow']['downloadMode']) && ($GLOBALS['workflow']['downloadMode'] == true))
510                                $this->download_mode = true;
511
512                        if ($auto && (!$this->isChildInstance) && $activity->isInteractive() && (!empty($actualUser)))
513                        {
514                                $_SESSION['phpgw_info']['workflow']['user_groups'] = $actualUserGroups;
515                                $_SESSION['phpgw_info']['workflow']['account_id'] = $actualUser;
516                                $GLOBALS['phpgw_info']['user']['account_id'] = $actualUser;
517                                $GLOBALS['workflow']['wf_user_id'] = $actualUser;
518                                $GLOBALS['user'] = $actualUser;
519                        }
520
521                        //Now that the instance is ready and that user code has maybe change some things
522                        // we can catch some others usefull vars
523                        $this->instance_id      = $instance->getInstanceId();
524                        $this->instance_name    = $instance->getName();
525                        $this->instance_owner   = $instance->getOwner();
526                        $this->owner_name       = $GLOBALS['phpgw']->accounts->id2name($this->instance_owner);
527                        if ($this->owner_name == '')
528                        {
529                                $this->owner_name = lang('Nobody');
530                        }
531                        $GLOBALS['workflow']['wf_instance_id']  =& $this->instance_id;
532                        $GLOBALS['workflow']['wf_instance_name']=& $this->instance_name;
533                        $GLOBALS['workflow']['wf_instance_owner']=& $this->instance_owner;
534                        $GLOBALS['workflow']['wf_owner_name']=& $this->owner_name;
535
536                        //was template changed?
537                        if ($_template_name)
538                        {
539                                $this->_template_name = $_template_name;
540                        }
541                        else
542                        {
543                                $this->_template_name = $this->activity->getNormalizedName().'.tpl';
544                        }
545
546                        $totalTime = (microtime(true) - $totalTime);
547
548                        $logTime = sprintf("GO [pid=%s,iid=%s,uid=%s,aid=%s] [eng=%ss,proc=%ss]",
549                                                                $this->process_id,
550                                                                $this->instance_id,
551                                                                $GLOBALS['user'],
552                                                                $this->activity_id,
553                                                                number_format(($totalTime - $processTime),3),
554                                                                number_format($processTime,3) );
555
556                        $this->logger->debug($logTime);
557
558                        // TODO: process instance comments
559                        $instructions = $this->runtime->handle_postUserCode(_DEBUG);
560                        switch($instructions['action'])
561                        {
562                                //interactive activity completed
563                                case 'completed':
564                                        // re-retrieve instance data which could have been modified by an automatic activity
565                                        $this->instance_id                = $instance->getInstanceId();
566                                        $this->instance_name              = $instance->getName();
567                                        $this->activityCompleteMessage    = $instance->getActivityCompleteMessage();
568
569                                        if (!$auto)
570                                        {
571                                                $this->assignCommonVariables();
572                                                // and display completed template
573                                                if ($GLOBALS['phpgw_info']['user']['preferences']['workflow']['show_activity_complete_page'] === '0')
574                                                        header('Location: workflow/index.php');
575                                                else
576                                                        $this->showCompletedPage();
577                                        }
578                                        break;
579                                //interactive activity still in interactive mode
580                                case 'loop':
581                                        if (!$auto)
582                                        {
583                                                $this->assignCommonVariables();
584                                                $this->showForm();
585                                        }
586                                        break;
587                                //nothing more
588                                case 'leaving':
589                                        if (!$auto)
590                                        {
591                                                $this->assignCommonVariables();
592                                                $this->showCancelledPage();
593                                        }
594                                        break;
595                                //non-interactive activities, auto-mode
596                                case 'return':
597                                        $result=Array();
598                                        $this->message[] = $this->GUI->get_error(false, _DEBUG);
599                                        $this->message[] = $this->runtime->get_error(false, _DEBUG);
600                                        //$this->message[] = $this->process->get_error(false, _DEBUG);
601                                        $result =& $instructions['engine_info'];
602                                        $this->message[] = $result['debug'];
603                                        $result['debug'] = implode('<br />',array_filter($this->message));
604                                        return $result;
605                                        break;
606                                default:
607                                        return $this->runtime->fail(lang('unknown instruction from the workflow engine: %1', $instructions['action']), true, _DEBUG);
608                                        break;
609                        }
610                }
611
612                /**
613                 * goajax
614                 *
615                 * @param int $activity_id
616                 * @param int $iid
617                 * @param bool $auto
618                 * @return array
619                 */
620                function goAjax($activity_id=0, $iid=0, $auto=0)
621                {
622                        $totalTime = microtime(true);
623
624                        $result=Array();
625
626                        if ($iid)
627                                $_REQUEST['iid'] = $iid;
628                        $iid = $_REQUEST['iid'];
629
630                        //$activity_id is set when we are in auto mode. In interactive mode we get if from POST or GET
631                        if (!$activity_id)
632                                $activity_id    = (int)get_var('activity_id', array('GET','POST'), 0);
633
634                        // load activity and instance
635                        if (!$activity_id)
636                        {
637                                $result['failure'] =  $this->runtime->fail(lang('Cannot run unknown activity'), true, _DEBUG, $auto);
638                                return $result;
639                        }
640
641                        //initalising activity and instance objects inside the WfRuntime object
642                        if (!($this->runtime->loadRuntime($activity_id,$iid)))
643                        {
644                                $result['failure'] = $this->runtime->fail(lang('Cannot run the activity'), true, _DEBUG, $auto);
645                                return $result;
646                        }
647
648                        $activity =& $this->runtime->getActivity($activity_id, true, true);
649                        $this->activity =& $activity;
650                        // the instance is avaible with $instance or $this->instance
651                        // note that for standalone activities this instance can be an empty instance object, but false is a bad value
652                        // HERE IS A BIG POINT: we map the instance to a runtime object
653                        // user code will manipulate a stance, thinking it's an instance, but it is
654                        // in fact a WfRuntime object, mapping all instance functions
655                        $this->instance =& $this->runtime;
656                        $instance =& $this->instance;
657                        $GLOBALS['workflow']['wf_runtime'] =& $this->runtime;
658                        if (!($instance))
659                        {
660                                $result['failure'] = $this->runtime->fail(lang('Cannot run the activity without instance'), true, _DEBUG, $auto);
661                                return $result;
662                        }
663                        $this->instance_id = $instance->getInstanceId();
664
665                        // load process
666                        $this->process =& $this->runtime->getProcess();
667                        if (!($this->process))
668                        {
669                                $result['failure'] = $this->runtime->fail(lang('Cannot run the activity without her process').$instance, true, _DEBUG, $auto);
670                                return $result;
671                        }
672
673                        //set some global variables needed
674                        $GLOBALS['user'] = $GLOBALS['phpgw_info']['user']['account_id'];
675
676                        //load role names, just an information
677                        $this->act_role_names = $activity->getActivityRoleNames();
678
679                        //set some other usefull vars
680                        $this->activity_type    = $activity->getType();
681                        $this->process_id       = $activity->getProcessId();
682                        $this->activity_id      = $activity_id;
683                        $this->process_name     = $this->process->getName();
684                        $this->process_version  = $this->process->getVersion();
685                        $this->activity_name    = $activity->getName();
686                        $this->user_name        = $GLOBALS['phpgw']->accounts->id2name($GLOBALS['user']);
687                        $this->view_activity    = $this->GUI->gui_get_process_view_activity($this->process_id);
688
689                        //we set them in $GLOBALS['workflow'] as well
690                        $GLOBALS['workflow']['wf_activity_type']                        =& $this->activity_type;
691                        $GLOBALS['workflow']['wf_process_id']                           =& $this->process_id;
692                        $GLOBALS['workflow']['wf_activity_id']                          =& $this->activity_id;
693                        $GLOBALS['workflow']['wf_process_name']                         =& $this->process_name;
694                        $GLOBALS['workflow']['wf_normalized_name']                      =  $this->process->getNormalizedName();
695                        $GLOBALS['workflow']['wf_process_version']                      =& $this->process_version;
696                        $GLOBALS['workflow']['wf_activity_name']                        =& $this->activity_name;
697                        $GLOBALS['workflow']['wf_user_name']                            =& $this->user_name;
698                        $GLOBALS['workflow']['wf_user_id']                                      =& $GLOBALS['user'];
699                        $GLOBALS['workflow']['wf_view_activity']                        =& $this->view_activity;
700                        $GLOBALS['workflow']['wf_workflow_path']                        = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'workflow';
701                        $GLOBALS['workflow']['wf_resources_path']                       = $GLOBALS['phpgw_info']['server']['webserver_url'] . SEP . 'workflow/redirect.php?pid=' . $this->process_id . '&file=';
702                        $GLOBALS['workflow']['wf_default_resources_path']       = Factory::getInstance('TemplateServer')->generateLink('processes');
703                        $GLOBALS['workflow']['wf_workflow_resources_path']      = Factory::getInstance('TemplateServer')->generateLink('');
704                        $GLOBALS['workflow']['wf_activity_url']                         = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'index.php?menuaction=workflow.'.get_class($this).'.go&activity_id='.$activity_id;
705                        $GLOBALS['workflow']['wf_user_cnname']                          = Factory::getInstance('WorkflowLDAP')->getName($GLOBALS['user']);
706                        $GLOBALS['workflow']['wf_back_link']                            = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'workflow'.SEP.'index.php?start_tab=1';
707                        $GLOBALS['workflow']['wf_js_path']                                      = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'workflow'.SEP.'js'.SEP.'jscode';
708                        $GLOBALS['workflow']['wf_user_activities']                      = $this->GUI->gui_list_user_activities($GLOBALS['user'], '0', '-1', 'ga.wf_name__ASC', '', '', false, true, true, true, '');
709                        if ($iid)
710                                $GLOBALS['workflow']['wf_instance_url'] = $GLOBALS['phpgw_info']['server']['webserver_url'].SEP.'index.php?menuaction=workflow.'.get_class($this).'.go&activity_id='.$activity_id."&iid=".$iid;
711                        else
712                                unset($GLOBALS['workflow']['wf_instance_url']);
713
714                        /* activate local functions */
715                        require_once(PHPGW_SERVER_ROOT . SEP . 'workflow' . SEP . 'inc' . SEP . 'local' . SEP . 'functions' . SEP . 'local.functions.php');
716
717                        //get configuration options with default values if no init was done before
718                        $myconf = array(
719                                'execute_activities_in_debug_mode'      => 0,
720                                'execute_activities_using_secure_connection' => 0
721                        );
722                        //this will give use asked options and som others used by WfRuntime
723                        $this->conf =& $this->runtime->getConfigValues($myconf);
724
725                        // run the activity
726                        if ($this->conf['execute_activities_in_debug_mode'])
727                        {
728                                ini_set('display_errors',true);
729                                error_reporting(E_ALL & ~E_NOTICE);
730                        } else {
731                                ini_set('display_errors',false);
732                        }
733
734                        /* BEGIN WORKFLOW MVC SETTINGS */
735                        $env = array();                                            //create settings vector
736                        $env['dao']                       =& Factory::newInstance('wf_db');    //data access object instance
737                        $env['workflow']      =& $GLOBALS['workflow'];             //workflow environment information
738                        $env['instance']      =& $instance;                        //process manager instance
739                        $env['activity']      =& $activity;                        //activity manager instance
740                        $security             =& Factory::newInstance('SecurityUtils'); //input sanitizer class
741                        $env['request']       =& $security->process($_REQUEST); //sanitizes input data from client
742                        $env['factory']       =& Factory::newInstance('ProcessWrapperFactory');  //instantiation controller class
743                        $env['natural']           =& Factory::newInstance('wf_natural');   //data access object instance for mainframe
744                        /* END WORKFLOW MVC SETTINGS */
745
746                        require_once(dirname(__FILE__) . SEP . 'nano' . SEP . 'JSON.php');
747                        require_once(dirname(__FILE__) . SEP . 'nano' . SEP . 'NanoUtil.class.php');
748                        require_once(dirname(__FILE__) . SEP . 'nano' . SEP . 'NanoJsonConverter.class.php');
749                        require_once(dirname(__FILE__) . SEP . 'nano' . SEP . 'NanoRequest.class.php');
750                        require_once(dirname(__FILE__) . SEP . 'nano' . SEP . 'NanoController.class.php');
751
752                        /* activate the security policy */
753                        Factory::getInstance('WorkflowSecurity')->enableSecurityPolicy();
754
755                        /**
756                         * here we are going to use our new Security static class.
757                         * From now, the factory frontend (static) will forward
758                         * the messages for the process factory instead of Workflow
759                         * factory. Note that this is the same comment as the previous
760                         * function... boooring..
761                         */
762                        Security::enable();
763
764                        $GLOBALS['workflow_env'] = &$env;
765                        $nc = &Factory::newInstance('NanoController');
766                        $nc->setClassPath(GALAXIA_PROCESSES . SEP . $this->process->getNormalizedName(). SEP . 'code');
767
768                        $processTime = microtime(true);
769                        $nc->iterateOverVirtualRequests();
770                        $processTime = microtime(true) - $processTime;
771
772                        $nc->outputResultData();
773                        unset($GLOBALS['workflow_env']);
774
775                        if (!is_null($iid))
776                                $instance->instance->sync();
777
778                        $totalTime = microtime(true) - $totalTime;
779
780                        $logTime = sprintf("GOAJAX [pid=%s,iid=%s,uid=%s,aid=%s] [eng=%ss,proc=%ss]",
781                                                                $this->process_id,
782                                                                $this->instance_id,
783                                                                $GLOBALS['user'],
784                                                                $this->activity_id,
785                                                                number_format(($totalTime - $processTime),3),
786                                                                number_format($processTime,3) );
787
788                        $this->logger->debug($logTime);
789                }
790
791                /**
792                 * Create a child instance
793                 *
794                 * @param int $activityID
795                 * @param mixed $properties
796                 * @param string $user
797                 * @param bool $parentLock
798                 * @return int The instance ID of the just created instance
799                 * @access public
800                 */
801                function goChildInstance($activityID, $properties, $user, $parentLock)
802                {
803                        $this->isChildInstance = true;
804                        $this->runtime->instance->isChildInstance = true;
805                        $this->runtime->instance->activityID = $activityID;
806                        $this->runtime->instance->parentLock = $parentLock;
807                        $this->runtime->instance->setProperties($properties);
808                        if ($user != '*')
809                                $this->runtime->setNextUser($user);
810
811                        /* run the selected activity */
812                        ob_start();
813                        $this->go($activityID, 0, true);
814                        ob_end_clean();
815
816                        /* return the just created child instance */
817                        return $this->runtime->instance_id;
818                }
819
820                /**
821                 * Show the page avaible when completing an activity
822                 * @return void
823                 * @access public
824                 */
825                function showCompletedPage()
826                {
827                        $this->workflowSmarty->assign('activityEvent', 'completed');
828                        $this->showAfterRunningPage();
829                }
830
831                /**
832                 * Show the page avaible when leaving an activity
833                 * @return void
834                 * @access public
835                 */
836                function showCancelledPage()
837                {
838                        $this->workflowSmarty->assign('activityEvent', 'cancelled');
839                        $this->showAfterRunningPage();
840                }
841
842                /**
843                 * Common code of pages showed after activity pages
844                 * @return void
845                 * @access public
846                 */
847                function showAfterRunningPage()
848                {
849                        /* get the header/footer */
850                        $this->assignHeader();
851
852                        /* generate the activity list */
853                        $processActivities = array_filter($GLOBALS['workflow']['wf_user_activities']['data'], create_function('$a', 'return ($a["wf_p_id"] == ' . $GLOBALS['workflow']['wf_process_id'] . ');'));
854                        $activityList = array(0 => '-- Selecione uma atividade --');
855                        foreach ($processActivities as $processActivity)
856                                $activityList[$processActivity['wf_activity_id']] = $processActivity['wf_name'];
857
858                        /* assign some variables */
859                        $this->workflowSmarty->assign('processName', $this->process_name);
860                        $this->workflowSmarty->assign('processVersion', $this->process_version);
861                        $this->workflowSmarty->assign('activityName', $this->activity_name);
862                        $this->workflowSmarty->assign('activityCompleteMessage', $this->activityCompleteMessage);
863                        $this->workflowSmarty->assign('activityBaseURL', $GLOBALS['phpgw_info']['server']['webserver_url']);
864                        $this->workflowSmarty->assign('activityList', $activityList);
865
866                        /* display the template */
867                        $this->workflowSmarty->display('after_running.tpl');
868                }
869
870                /**
871                 * Assign common information of interactive forms (e.g., error messages)
872                 * @return void
873                 * @access public
874                 */
875                function assignCommonVariables()
876                {
877                        $this->message[] = $this->GUI->get_error(false, _DEBUG);
878                        $this->message[] = $this->runtime->get_error(false, _DEBUG);
879                        $activityErrors = array_filter(array_merge(explode('<br />', $this->message[0]), explode('<br />', $this->message[1])));
880                        $this->workflowSmarty->assign('activityErrors', $activityErrors);
881                }
882
883                /**
884                 * Show the activity page (workflow template and activity template)
885                 * @return void
886                 * @access public
887                 */
888                function showForm()
889                {
890                        /* define the header */
891                        $this->assignHeader();
892
893                        /* define the variables */
894                        $activityOutput = $this->wf_template->fetch($this->_template_name);
895                        $actionURL = isset($GLOBALS['workflow']['wf_instance_url']) ? $GLOBALS['workflow']['wf_instance_url'] : $GLOBALS['workflow']['wf_activity_url'];
896                        $CSSLink = $this->get_css_link('run_activity', $this->print_mode);
897                        $CSSMedia = $this->print_mode ? 'print' : 'all';
898
899                        /* assign the variables to smarty */
900                        $this->workflowSmarty->assign('activityOutput', $activityOutput);
901                        $this->workflowSmarty->assign('actionURL', $actionURL);
902                        $this->workflowSmarty->assign('CSSLink', $CSSLink);
903                        $this->workflowSmarty->assign('CSSMedia', $CSSMedia);
904
905                        $this->workflowSmarty->display('run_activity.tpl');
906                        unset($smarty);
907                }
908
909                /**
910                 * Define if the header, footer and navigation bar will be shown
911                 * @return void
912                 * @access public
913                 */
914                function assignHeader()
915                {
916                        $headerConfig = 0;
917                        if (!$this->download_mode and !$this->print_mode)
918                        {
919                                $headerConfig |= workflow_smarty::SHOW_HEADER | workflow_smarty::SHOW_FOOTER;
920                                if ($this->runtime->activity->child_name != 'View')
921                                        $headerConfig |= workflow_smarty::SHOW_NAVIGATION_BAR;
922                        }
923
924                        $this->workflowSmarty->setHeader($headerConfig);
925                        $this->workflowSmarty->assign('header', $this->workflowSmarty->expressoHeader);
926                        $this->workflowSmarty->assign('footer', $this->workflowSmarty->expressoFooter);
927                }
928        }
929?>
Note: See TracBrowser for help on using the repository browser.