Issues (621)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

code/actions/NotifyUsersWorkflowAction.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * A workflow action that notifies users attached to the workflow path that they have a task awaiting them.
4
 *
5
 * @license    BSD License (http://silverstripe.org/bsd-license/)
6
 * @package    advancedworkflow
7
 * @subpackage actions
8
 */
9
class NotifyUsersWorkflowAction extends WorkflowAction {
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
10
11
	/**
12
	 * @var bool Should templates be constrained to just known-safe variables.
13
	 */
14
	private static $whitelist_template_variables = false;
15
16
	private static $db = array(
17
		'EmailSubject'			=> 'Varchar(100)',
18
		'EmailFrom'				=> 'Varchar(50)',
19
		'EmailTemplate'			=> 'Text'
20
	);
21
22
	public static $icon = 'advancedworkflow/images/notify.png';
23
24
	public function getCMSFields() {
25
		$fields = parent::getCMSFields();
26
27
		$fields->addFieldsToTab('Root.Main', array(
28
			new HeaderField('NotificationEmail', $this->fieldLabel('NotificationEmail')),
29
			new LiteralField('NotificationNote', '<p>' . $this->fieldLabel('NotificationNote') . '</p>'),
30
			new TextField('EmailSubject', $this->fieldLabel('EmailSubject')),
31
			new TextField('EmailFrom', $this->fieldLabel('EmailFrom')),
32
33
			new TextareaField('EmailTemplate', $this->fieldLabel('EmailTemplate')),
34
			new ToggleCompositeField('FormattingHelpContainer',
35
				$this->fieldLabel('FormattingHelp'), new LiteralField('FormattingHelp', $this->getFormattingHelp()))
36
		));
37
38
		$this->extend('updateNotifyUsersCMSFields', $fields);
39
40
		return $fields;
41
	}
42
43
	public function fieldLabels($relations = true) {
44
		return array_merge(parent::fieldLabels($relations), array(
45
			'NotificationEmail' => _t('NotifyUsersWorkflowAction.NOTIFICATIONEMAIL', 'Notification Email'),
46
			'NotificationNote'  => _t('NotifyUsersWorkflowAction.NOTIFICATIONNOTE',
47
				'All users attached to the workflow will be sent an email when this action is run.'),
48
			'EmailSubject'      => _t('NotifyUsersWorkflowAction.EMAILSUBJECT', 'Email subject'),
49
			'EmailFrom'         => _t('NotifyUsersWorkflowAction.EMAILFROM', 'Email from'),
50
			'EmailTemplate'     => _t('NotifyUsersWorkflowAction.EMAILTEMPLATE', 'Email template'),
51
			'FormattingHelp'    => _t('NotifyUsersWorkflowAction.FORMATTINGHELP', 'Formatting Help')
52
		));
53
	}
54
55
	public function execute(WorkflowInstance $workflow) {
56
		$members = $workflow->getAssignedMembers();
57
58
		if(!$members || !count($members)) {
59
			return true;
60
		}
61
62
		$member = Member::currentUser();
63
		$initiator = $workflow->Initiator();
64
65
		$contextFields   = $this->getContextFields($workflow->getTarget());
66
		$memberFields    = $this->getMemberFields($member);
67
		$initiatorFields = $this->getMemberFields($initiator);
68
69
		$variables = array();
70
		
71
		foreach($contextFields as $field => $val) $variables["\$Context.$field"] = $val;
72
		foreach($memberFields as $field => $val)  $variables["\$Member.$field"] = $val;
73
		foreach($initiatorFields as $field => $val)  $variables["\$Initiator.$field"] = $val;
74
75
		$pastActions = $workflow->Actions()->sort('Created DESC');
76
		$variables["\$CommentHistory"] = $this->customise(array(
77
			'PastActions'=>$pastActions,
78
			'Now'=>SS_Datetime::now()
79
		))->renderWith('CommentHistory');
80
81
		$from = str_replace(array_keys($variables), array_values($variables), $this->EmailFrom);
82
		$subject = str_replace(array_keys($variables), array_values($variables), $this->EmailSubject);
83
84
		if ($this->config()->whitelist_template_variables) {
85
			$item = new ArrayData(array(
86
				'Initiator' => new ArrayData($initiatorFields),
87
				'Member' => new ArrayData($memberFields),
88
				'Context' => new ArrayData($contextFields),
89
				'CommentHistory' => $variables["\$CommentHistory"]
90
			));
91
		}
92
		else {
93
			$item = $workflow->customise(array(
94
				'Items' => $workflow->Actions(),
95
				'Member' => $member,
96
				'Context' => new ArrayData($contextFields),
97
				'CommentHistory' => $variables["\$CommentHistory"]
98
			));
99
		}
100
101
		
102
		$view = SSViewer::fromString($this->EmailTemplate);
103
		$this->extend('updateView', $view);
104
105
		$body = $view->process($item);
106
107
		foreach($members as $member) {
108
			if($member->Email) {
109
				$email = new Email;
110
				$email->setTo($member->Email);
111
				$email->setSubject($subject);
112
				$email->setFrom($from);
113
				$email->setBody($body);
114
				$email->send();
115
			}
116
		}
117
118
		return true;
119
	}
120
121
	/**
122
	 * @param  DataObject $target
123
	 * @return array
124
	 */
125
	public function getContextFields(DataObject $target) {
126
		$result = array();
127
		if (!$target) {
128
			return $result;
129
		}
130
		$fields = $target->inheritedDatabaseFields();
131
132
		foreach($fields as $field => $fieldDesc) {
133
			$result[$field] = $target->$field;
134
		}
135
136
		if($target instanceof CMSPreviewable) {
137
			$result['CMSLink'] = $target->CMSEditLink();
138
		} else if ($target->hasMethod('WorkflowLink')) {
139
			$result['CMSLink'] = $target->WorkflowLink();
140
		}
141
142
		return $result;
143
	}
144
145
	/**
146
	 * Builds an array with the member information
147
	 * @param Member $member An optional member to use. If null, will use the current logged in member
148
	 * @return array
149
	 */
150
	public function getMemberFields(Member $member = null) {
151
		if (!$member){
152
			$member = Member::currentUser();
153
		}
154
		$result = array();
155
156
		if($member) foreach($member->summaryFields() as $field => $title) {
157
			$result[$field] = $member->$field;
158
		}
159
160
		if($member && !array_key_exists('Name', $result)) {
161
			$result['Name'] = $member->getName();
162
		}
163
164
		return $result;
165
	}
166
	
167
168
	/**
169
	 * Returns a basic set of instructions on how email templates are populated with variables.
170
	 *
171
	 * @return string
172
	 */
173
	public function getFormattingHelp() {
174
		$note = _t('NotifyUsersWorkflowAction.FORMATTINGNOTE',
175
			'Notification emails can contain HTML formatting. The following special variables are replaced with their
176
			respective values in the email subject, email from and template/body.');
177
		$member = _t('NotifyUsersWorkflowAction.MEMBERNOTE',
178
			'These fields will be populated from the member that initiates the notification action. For example,
179
			{$Member.FirstName}.');
180
		$initiator = _t('NotifyUsersWorkflowAction.INITIATORNOTE',
181
			'These fields will be populated from the member that initiates the workflow request. For example,
182
			{$Initiator.Email}.');
183
		$context = _t('NotifyUsersWorkflowAction.CONTEXTNOTE',
184
			'Any summary fields from the workflow target will be available. For example, {$Context.Title}.
185
			Additionally, the {$Context.AbsoluteEditLink} variable will contain a link to edit the workflow target in
186
			the CMS (if it is a Page), and the {$Context.LinkToPendingItems} variable will generate a link to the CMS\' workflow admin,
187
			useful for allowing users to enact workflow transitions, directly from emails.');
188
		$fieldName = _t('NotifyUsersWorkflowAction.FIELDNAME', 'Field name');
189
		$commentHistory = _t('NotifyUsersWorkflowAction.COMMENTHISTORY', 'Comment history up to this notification.');
190
191
		$memberFields = implode(', ', array_keys($this->getMemberFields()));
192
193
		return "<p>$note</p>
194
			<p><strong>{\$Member.($memberFields)}</strong><br>$member</p>
195
			<p><strong>{\$Initiator.($memberFields)}</strong><br>$initiator</p>
196
			<p><strong>{\$Context.($fieldName)}</strong><br>$context</p>
197
			<p><strong>{\$CommentHistory}</strong><br>$commentHistory</p>";
198
	}
199
200
}
201