Ejemplo n.º 1
0
 protected function applyCustomInternalTransaction(PhabricatorLiskDAO $object, PhabricatorApplicationTransaction $xaction)
 {
     switch ($xaction->getTransactionType()) {
         case HeraldRuleTransaction::TYPE_DISABLE:
             return $object->setIsDisabled($xaction->getNewValue());
         case HeraldRuleTransaction::TYPE_NAME:
             return $object->setName($xaction->getNewValue());
         case HeraldRuleTransaction::TYPE_EDIT:
             $new_state = id(new HeraldRuleSerializer())->deserializeRuleComponents($xaction->getNewValue());
             $object->setMustMatchAll((int) $new_state['match_all']);
             $object->attachConditions($new_state['conditions']);
             $object->attachActions($new_state['actions']);
             $object->setRepetitionPolicy(HeraldRepetitionPolicyConfig::toInt($new_state['repetition_policy']));
             return $object;
     }
 }
Ejemplo n.º 2
0
 public function applyEffects(array $effects, HeraldAdapter $adapter, array $rules)
 {
     assert_instances_of($effects, 'HeraldEffect');
     assert_instances_of($rules, 'HeraldRule');
     $this->transcript->setDryRun((int) $this->getDryRun());
     if ($this->getDryRun()) {
         $xscripts = array();
         foreach ($effects as $effect) {
             $xscripts[] = new HeraldApplyTranscript($effect, false, pht('This was a dry run, so no actions were actually taken.'));
         }
     } else {
         $xscripts = $adapter->applyHeraldEffects($effects);
     }
     assert_instances_of($xscripts, 'HeraldApplyTranscript');
     foreach ($xscripts as $apply_xscript) {
         $this->transcript->addApplyTranscript($apply_xscript);
     }
     // For dry runs, don't mark the rule as having applied to the object.
     if ($this->getDryRun()) {
         return;
     }
     $rules = mpull($rules, null, 'getID');
     $applied_ids = array();
     $first_policy = HeraldRepetitionPolicyConfig::toInt(HeraldRepetitionPolicyConfig::FIRST);
     // Mark all the rules that have had their effects applied as having been
     // executed for the current object.
     $rule_ids = mpull($xscripts, 'getRuleID');
     foreach ($rule_ids as $rule_id) {
         if (!$rule_id) {
             // Some apply transcripts are purely informational and not associated
             // with a rule, e.g. carryover emails from earlier revisions.
             continue;
         }
         $rule = idx($rules, $rule_id);
         if (!$rule) {
             continue;
         }
         if ($rule->getRepetitionPolicy() == $first_policy) {
             $applied_ids[] = $rule_id;
         }
     }
     if ($applied_ids) {
         $conn_w = id(new HeraldRule())->establishConnection('w');
         $sql = array();
         foreach ($applied_ids as $id) {
             $sql[] = qsprintf($conn_w, '(%s, %d)', $adapter->getPHID(), $id);
         }
         queryfx($conn_w, 'INSERT IGNORE INTO %T (phid, ruleID) VALUES %Q', HeraldRule::TABLE_RULE_APPLIED, implode(', ', $sql));
     }
 }
Ejemplo n.º 3
0
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
echo "Cleaning up old Herald rule applied rows...\n";
$rules = id(new HeraldRule())->loadAll();
foreach ($rules as $key => $rule) {
    $first_policy = HeraldRepetitionPolicyConfig::toInt(HeraldRepetitionPolicyConfig::FIRST);
    if ($rule->getRepetitionPolicy() != $first_policy) {
        unset($rules[$key]);
    }
}
$conn_w = id(new HeraldRule())->establishConnection('w');
$clause = '';
if ($rules) {
    $clause = qsprintf($conn_w, 'WHERE ruleID NOT IN (%Ld)', mpull($rules, 'getID'));
}
echo "This may take a moment";
do {
    queryfx($conn_w, 'DELETE FROM %T %Q LIMIT 1000', HeraldRule::TABLE_RULE_APPLIED, $clause);
    echo ".";
} while ($conn_w->getAffectedRows());
echo "\n";
Ejemplo n.º 4
0
 public function applyEffects(array $effects, HeraldObjectAdapter $object, array $rules)
 {
     assert_instances_of($effects, 'HeraldEffect');
     assert_instances_of($rules, 'HeraldRule');
     $this->transcript->setDryRun($object instanceof HeraldDryRunAdapter);
     $xscripts = $object->applyHeraldEffects($effects);
     foreach ($xscripts as $apply_xscript) {
         if (!$apply_xscript instanceof HeraldApplyTranscript) {
             throw new Exception("Heraldable must return HeraldApplyTranscripts from " . "applyHeraldEffect().");
         }
         $this->transcript->addApplyTranscript($apply_xscript);
     }
     if (!$this->transcript->getDryRun()) {
         $rules = mpull($rules, null, 'getID');
         $applied_ids = array();
         $first_policy = HeraldRepetitionPolicyConfig::toInt(HeraldRepetitionPolicyConfig::FIRST);
         // Mark all the rules that have had their effects applied as having been
         // executed for the current object.
         $rule_ids = mpull($xscripts, 'getRuleID');
         foreach ($rule_ids as $rule_id) {
             if (!$rule_id) {
                 // Some apply transcripts are purely informational and not associated
                 // with a rule, e.g. carryover emails from earlier revisions.
                 continue;
             }
             $rule = idx($rules, $rule_id);
             if (!$rule) {
                 continue;
             }
             if ($rule->getRepetitionPolicy() == $first_policy) {
                 $applied_ids[] = $rule_id;
             }
         }
         if ($applied_ids) {
             $conn_w = id(new HeraldRule())->establishConnection('w');
             $sql = array();
             foreach ($applied_ids as $id) {
                 $sql[] = qsprintf($conn_w, '(%s, %d)', $object->getPHID(), $id);
             }
             queryfx($conn_w, 'INSERT IGNORE INTO %T (phid, ruleID) VALUES %Q', HeraldRule::TABLE_RULE_APPLIED, implode(', ', $sql));
         }
     }
 }
Ejemplo n.º 5
0
 /**
  * Render the selector for "Take these actions (every time | only the first
  * time) this rule matches..." element.
  */
 private function renderRepetitionSelector($rule, HeraldAdapter $adapter)
 {
     $repetition_policy = HeraldRepetitionPolicyConfig::toString($rule->getRepetitionPolicy());
     $repetition_options = $adapter->getRepetitionOptions();
     $repetition_names = HeraldRepetitionPolicyConfig::getMap();
     $repetition_map = array_select_keys($repetition_names, $repetition_options);
     if (count($repetition_map) < 2) {
         return head($repetition_names);
     } else {
         return AphrontFormSelectControl::renderSelectTag($repetition_policy, $repetition_map, array('name' => 'repetition_policy'));
     }
 }
Ejemplo n.º 6
0
 public function renderRuleAsText(HeraldRule $rule, PhabricatorHandleList $handles, PhabricatorUser $viewer)
 {
     require_celerity_resource('herald-css');
     $icon = id(new PHUIIconView())->setIconFont('fa-chevron-circle-right lightgreytext')->addClass('herald-list-icon');
     if ($rule->getMustMatchAll()) {
         $match_text = pht('When all of these conditions are met:');
     } else {
         $match_text = pht('When any of these conditions are met:');
     }
     $match_title = phutil_tag('p', array('class' => 'herald-list-description'), $match_text);
     $match_list = array();
     foreach ($rule->getConditions() as $condition) {
         $match_list[] = phutil_tag('div', array('class' => 'herald-list-item'), array($icon, $this->renderConditionAsText($condition, $handles, $viewer)));
     }
     $integer_code_for_every = HeraldRepetitionPolicyConfig::toInt(HeraldRepetitionPolicyConfig::EVERY);
     if ($rule->getRepetitionPolicy() == $integer_code_for_every) {
         $action_text = pht('Take these actions every time this rule matches:');
     } else {
         $action_text = pht('Take these actions the first time this rule matches:');
     }
     $action_title = phutil_tag('p', array('class' => 'herald-list-description'), $action_text);
     $action_list = array();
     foreach ($rule->getActions() as $action) {
         $action_list[] = phutil_tag('div', array('class' => 'herald-list-item'), array($icon, $this->renderActionAsText($viewer, $action, $handles)));
     }
     return array($match_title, $match_list, $action_title, $action_list);
 }
Ejemplo n.º 7
0
 public function serializeRule(HeraldRule $rule)
 {
     return $this->serializeRuleComponents((bool) $rule->getMustMatchAll(), $rule->getConditions(), $rule->getActions(), HeraldRepetitionPolicyConfig::toString($rule->getRepetitionPolicy()));
 }
Ejemplo n.º 8
0
 /**
  * Render the selector for "Take these actions (every time | only the first
  * time) this rule matches..." element.
  */
 private function renderRepetitionSelector($rule)
 {
     // Make the selector for choosing how often this rule should be repeated
     $repetition_policy = HeraldRepetitionPolicyConfig::toString($rule->getRepetitionPolicy());
     $repetition_options = HeraldRepetitionPolicyConfig::getMapForContentType($rule->getContentType());
     if (empty($repetition_options)) {
         // default option is 'every time'
         $repetition_selector = idx(HeraldRepetitionPolicyConfig::getMap(), HeraldRepetitionPolicyConfig::EVERY);
         return $repetition_selector;
     } else {
         if (count($repetition_options) == 1) {
             // if there's only 1 option, just pick it for the user
             $repetition_selector = reset($repetition_options);
             return $repetition_selector;
         } else {
             return AphrontFormSelectControl::renderSelectTag($repetition_policy, $repetition_options, array('name' => 'repetition_policy'));
         }
     }
 }
 public function processRequest()
 {
     $request = $this->getRequest();
     $user = $request->getUser();
     $content_type_map = HeraldContentTypeConfig::getContentTypeMap();
     if ($this->id) {
         $rule = id(new HeraldRule())->load($this->id);
         if (!$rule) {
             return new Aphront404Response();
         }
         if ($rule->getAuthorPHID() != $user->getPHID()) {
             throw new Exception("You don't own this rule and can't edit it.");
         }
     } else {
         $rule = new HeraldRule();
         $rule->setAuthorPHID($user->getPHID());
         $rule->setMustMatchAll(true);
         $type = $request->getStr('type');
         if (!isset($content_type_map[$type])) {
             $type = HeraldContentTypeConfig::CONTENT_TYPE_DIFFERENTIAL;
         }
         $rule->setContentType($type);
     }
     $local_version = id(new HeraldRule())->getConfigVersion();
     if ($rule->getConfigVersion() > $local_version) {
         throw new Exception("This rule was created with a newer version of Herald. You can not " . "view or edit it in this older version. Try dev or wait for a push.");
     }
     // Upgrade rule version to our version, since we might add newly-defined
     // conditions, etc.
     $rule->setConfigVersion($local_version);
     $rule_conditions = $rule->loadConditions();
     $rule_actions = $rule->loadActions();
     $rule->attachConditions($rule_conditions);
     $rule->attachActions($rule_actions);
     $e_name = true;
     $errors = array();
     if ($request->isFormPost() && $request->getStr('save')) {
         $rule->setName($request->getStr('name'));
         $rule->setMustMatchAll($request->getStr('must_match') == 'all');
         $repetition_policy_param = $request->getStr('repetition_policy');
         $rule->setRepetitionPolicy(HeraldRepetitionPolicyConfig::toInt($repetition_policy_param));
         if (!strlen($rule->getName())) {
             $e_name = "Required";
             $errors[] = "Rule must have a name.";
         }
         $data = json_decode($request->getStr('rule'), true);
         if (!is_array($data) || !$data['conditions'] || !$data['actions']) {
             throw new Exception("Failed to decode rule data.");
         }
         $conditions = array();
         foreach ($data['conditions'] as $condition) {
             if ($condition === null) {
                 // We manage this as a sparse array on the client, so may receive
                 // NULL if conditions have been removed.
                 continue;
             }
             $obj = new HeraldCondition();
             $obj->setFieldName($condition[0]);
             $obj->setFieldCondition($condition[1]);
             if (is_array($condition[2])) {
                 $obj->setValue(array_keys($condition[2]));
             } else {
                 $obj->setValue($condition[2]);
             }
             $cond_type = $obj->getFieldCondition();
             if ($cond_type == HeraldConditionConfig::CONDITION_REGEXP) {
                 if (@preg_match($obj->getValue(), '') === false) {
                     $errors[] = 'The regular expression "' . $obj->getValue() . '" is not valid. ' . 'Regular expressions must have enclosing characters (e.g. ' . '"@/path/to/file@", not "/path/to/file") and be syntactically ' . 'correct.';
                 }
             }
             if ($cond_type == HeraldConditionConfig::CONDITION_REGEXP_PAIR) {
                 $json = json_decode($obj->getValue(), true);
                 if (!is_array($json)) {
                     $errors[] = 'The regular expression pair "' . $obj->getValue() . '" is not ' . 'valid JSON. Enter a valid JSON array with two elements.';
                 } else {
                     if (count($json) != 2) {
                         $errors[] = 'The regular expression pair "' . $obj->getValue() . '" must have ' . 'exactly two elements.';
                     } else {
                         $key_regexp = array_shift($json);
                         $val_regexp = array_shift($json);
                         if (@preg_match($key_regexp, '') === false) {
                             $errors[] = 'The first regexp, "' . $key_regexp . '" in the regexp pair ' . 'is not a valid regexp.';
                         }
                         if (@preg_match($val_regexp, '') === false) {
                             $errors[] = 'The second regexp, "' . $val_regexp . '" in the regexp pair ' . 'is not a valid regexp.';
                         }
                     }
                 }
             }
             $conditions[] = $obj;
         }
         $actions = array();
         foreach ($data['actions'] as $action) {
             if ($action === null) {
                 // Sparse on the client; removals can give us NULLs.
                 continue;
             }
             $obj = new HeraldAction();
             $obj->setAction($action[0]);
             if (!isset($action[1])) {
                 // Legitimate for any action which doesn't need a target, like
                 // "Do nothing".
                 $action[1] = null;
             }
             if (is_array($action[1])) {
                 $obj->setTarget(array_keys($action[1]));
             } else {
                 $obj->setTarget($action[1]);
             }
             $actions[] = $obj;
         }
         $rule->attachConditions($conditions);
         $rule->attachActions($actions);
         if (!$errors) {
             try {
                 // TODO
                 //          $rule->openTransaction();
                 $rule->save();
                 $rule->saveConditions($conditions);
                 $rule->saveActions($actions);
                 //          $rule->saveTransaction();
                 $uri = '/herald/view/' . $rule->getContentType() . '/';
                 return id(new AphrontRedirectResponse())->setURI($uri);
             } catch (AphrontQueryDuplicateKeyException $ex) {
                 $e_name = "Not Unique";
                 $errors[] = "Rule name is not unique. Choose a unique name.";
             }
         }
     }
     $phids = array();
     $phids[] = $rule->getAuthorPHID();
     foreach ($rule->getActions() as $action) {
         if (!is_array($action->getTarget())) {
             continue;
         }
         foreach ($action->getTarget() as $target) {
             $target = (array) $target;
             foreach ($target as $phid) {
                 $phids[] = $phid;
             }
         }
     }
     foreach ($rule->getConditions() as $condition) {
         $value = $condition->getValue();
         if (is_array($value)) {
             foreach ($value as $phid) {
                 $phids[] = $phid;
             }
         }
     }
     $handles = id(new PhabricatorObjectHandleData($phids))->loadHandles();
     if ($errors) {
         $error_view = new AphrontErrorView();
         $error_view->setTitle('Form Errors');
         $error_view->setErrors($errors);
     } else {
         $error_view = null;
     }
     $options = array('all' => 'all of', 'any' => 'any of');
     $selected = $rule->getMustMatchAll() ? 'all' : 'any';
     $must_match = array();
     foreach ($options as $key => $option) {
         $must_match[] = phutil_render_tag('option', array('selected' => $selected == $key ? 'selected' : null, 'value' => $key), phutil_escape_html($option));
     }
     $must_match = '<select name="must_match">' . implode("\n", $must_match) . '</select>';
     if ($rule->getID()) {
         $action = '/herald/rule/' . $rule->getID() . '/';
     } else {
         $action = '/herald/rule/' . $rule->getID() . '/';
     }
     // Make the selector for choosing how often this rule should be repeated
     $repetition_selector = "";
     $repetition_policy = HeraldRepetitionPolicyConfig::toString($rule->getRepetitionPolicy());
     $repetition_options = HeraldRepetitionPolicyConfig::getMapForContentType($rule->getContentType());
     if (empty($repetition_options)) {
         // default option is 'every time'
         $repetition_selector = idx(HeraldRepetitionPolicyConfig::getMap(), HeraldRepetitionPolicyConfig::EVERY);
     } else {
         if (count($repetition_options) == 1) {
             // if there's only 1 option, just pick it for the user
             $repetition_selector = reset($repetition_options);
         } else {
             // give the user all the options for this rule type
             $tags = array();
             foreach ($repetition_options as $name => $option) {
                 $tags[] = phutil_render_tag('option', array('selected' => $repetition_policy == $name ? 'selected' : null, 'value' => $name), phutil_escape_html($option));
             }
             $repetition_selector = '<select name="repetition_policy">' . implode("\n", $tags) . '</select>';
         }
     }
     require_celerity_resource('herald-css');
     $type_name = $content_type_map[$rule->getContentType()];
     $form = id(new AphrontFormView())->setUser($user)->setID('herald-rule-edit-form')->addHiddenInput('type', $rule->getContentType())->addHiddenInput('save', 1)->appendChild(javelin_render_tag('input', array('type' => 'hidden', 'name' => 'rule', 'sigil' => 'rule')))->appendChild(id(new AphrontFormTextControl())->setLabel('Rule Name')->setName('name')->setError($e_name)->setValue($rule->getName()))->appendChild(id(new AphrontFormStaticControl())->setLabel('Author')->setValue($handles[$rule->getAuthorPHID()]->getName()))->appendChild(id(new AphrontFormMarkupControl())->setValue("This rule triggers for <strong>{$type_name}</strong>."))->appendChild('<h1>Conditions</h1>' . '<div class="aphront-form-inset">' . '<div style="float: right;">' . javelin_render_tag('a', array('href' => '#', 'class' => 'button green', 'sigil' => 'create-condition', 'mustcapture' => true), 'Create New Condition') . '</div>' . '<p>When ' . $must_match . ' these conditions are met:</p>' . '<div style="clear: both;"></div>' . javelin_render_tag('table', array('sigil' => 'rule-conditions', 'class' => 'herald-condition-table'), '') . '</div>')->appendChild('<h1>Action</h1>' . '<div class="aphront-form-inset">' . '<div style="float: right;">' . javelin_render_tag('a', array('href' => '#', 'class' => 'button green', 'sigil' => 'create-action', 'mustcapture' => true), 'Create New Action') . '</div>' . '<p>' . 'Take these actions ' . $repetition_selector . ' this rule matches:' . '</p>' . '<div style="clear: both;"></div>' . javelin_render_tag('table', array('sigil' => 'rule-actions', 'class' => 'herald-action-table'), '') . '</div>')->appendChild(id(new AphrontFormSubmitControl())->setValue('Save Rule')->addCancelButton('/herald/view/' . $rule->getContentType() . '/'));
     $serial_conditions = array(array('default', 'default', ''));
     if ($rule->getConditions()) {
         $serial_conditions = array();
         foreach ($rule->getConditions() as $condition) {
             $value = $condition->getValue();
             if (is_array($value)) {
                 $value_map = array();
                 foreach ($value as $k => $fbid) {
                     $value_map[$fbid] = $handles[$fbid]->getName();
                 }
                 $value = $value_map;
             }
             $serial_conditions[] = array($condition->getFieldName(), $condition->getFieldCondition(), $value);
         }
     }
     $serial_actions = array(array('default', ''));
     if ($rule->getActions()) {
         $serial_actions = array();
         foreach ($rule->getActions() as $action) {
             $target_map = array();
             foreach ((array) $action->getTarget() as $fbid) {
                 $target_map[$fbid] = $handles[$fbid]->getName();
             }
             $serial_actions[] = array($action->getAction(), $target_map);
         }
     }
     $all_rules = id(new HeraldRule())->loadAllWhere('authorPHID = %d AND contentType = %s', $rule->getAuthorPHID(), $rule->getContentType());
     $all_rules = mpull($all_rules, 'getName', 'getID');
     asort($all_rules);
     unset($all_rules[$rule->getID()]);
     $config_info = array();
     $config_info['fields'] = HeraldFieldConfig::getFieldMapForContentType($rule->getContentType());
     $config_info['conditions'] = HeraldConditionConfig::getConditionMap();
     foreach ($config_info['fields'] as $field => $name) {
         $config_info['conditionMap'][$field] = array_keys(HeraldConditionConfig::getConditionMapForField($field));
     }
     foreach ($config_info['fields'] as $field => $fname) {
         foreach ($config_info['conditions'] as $condition => $cname) {
             $config_info['values'][$field][$condition] = HeraldValueTypeConfig::getValueTypeForFieldAndCondition($field, $condition);
         }
     }
     $config_info['actions'] = HeraldActionConfig::getActionMapForContentType($rule->getContentType());
     foreach ($config_info['actions'] as $action => $name) {
         $config_info['targets'][$action] = HeraldValueTypeConfig::getValueTypeForAction($action);
     }
     Javelin::initBehavior('herald-rule-editor', array('root' => 'herald-rule-edit-form', 'conditions' => (object) $serial_conditions, 'actions' => (object) $serial_actions, 'template' => $this->buildTokenizerTemplates() + array('rules' => $all_rules), 'info' => $config_info));
     $panel = new AphrontPanelView();
     $panel->setHeader('Edit Herald Rule');
     $panel->setWidth(AphrontPanelView::WIDTH_WIDE);
     $panel->appendChild($form);
     return $this->buildStandardPageResponse(array($error_view, $panel), array('title' => 'Edit Rule'));
 }
Ejemplo n.º 10
0
 private function getRepetitionSelector($rule)
 {
     // Make the selector for choosing how often this rule should be repeated
     $repetition_policy = HeraldRepetitionPolicyConfig::toString($rule->getRepetitionPolicy());
     $repetition_options = HeraldRepetitionPolicyConfig::getMapForContentType($rule->getContentType());
     if (empty($repetition_options)) {
         // default option is 'every time'
         $repetition_selector = idx(HeraldRepetitionPolicyConfig::getMap(), HeraldRepetitionPolicyConfig::EVERY);
         return $repetition_selector;
     } else {
         if (count($repetition_options) == 1) {
             // if there's only 1 option, just pick it for the user
             $repetition_selector = reset($repetition_options);
             return $repetition_selector;
         } else {
             // give the user all the options for this rule type
             $tags = array();
             foreach ($repetition_options as $name => $option) {
                 $tags[] = phutil_render_tag('option', array('selected' => $repetition_policy == $name ? 'selected' : null, 'value' => $name), phutil_escape_html($option));
             }
             $repetition_selector = '<select name="repetition_policy">' . implode("\n", $tags) . '</select>';
             return $repetition_selector;
         }
     }
 }