| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <?php
- /**
- * PHP 5
- *
- * @author Mark Scherer
- * @cakephp 2.x
- * @license MIT
- */
- App::uses('ModelBehavior', 'Model');
- /**
- * Replace regionalized chars with standard ones on input.
- *
- * “smart quotes” become "dumb quotes" on save
- * „low-high“ become "high-high"
- * same for single quotes (apostrophes)
- * in order to unify them. Basic idea is a unified non-regional version in the database.
- *
- * Using the TypographyHelper we can then format the output
- * according to the language/regional setting (in some languages
- * the high-high smart quotes, in others the low-high ones are preferred)
- *
- * Settings are:
- * - string $before (validate/save)
- * - array $fields (leave empty for auto detection)
- * - bool $mergeQuotes (merge single and double into " or any custom char)
- *
- * TODOS:
- * - respect primary and secondary quotations marks as well as alternatives
- *
- * @link http://www.dereuromark.de/2012/08/12/typographic-behavior-and-typography-helper/
- * @link http://en.wikipedia.org/wiki/Non-English_usage_of_quotation_marks
- */
- class TypographicBehavior extends ModelBehavior {
- protected $_map = array(
- 'in' => array(
- '‘' => '\'',
- // Translates to '‘'.
- '’' => '\'',
- // Translates to '’'.
- '‚' => '\'',
- // Translates to '‚'.
- '‛' => '\'',
- // Translates to '‛'.
- '“' => '"',
- // Translates to '“'.
- '”' => '"',
- // Translates to '”'.
- '„' => '"',
- // Translates to '„'.
- '‟' => '"',
- // Translates to '‟'.
- '«' => '"',
- // Translates to '«'.
- '»' => '"',
- // Translates to '»'.
- '‹' => '\'',
- // Translates to '«'.
- '›' => '\'',
- // Translates to '»'.
- ),
- 'out' => array(
- // Use the TypographyHelper for this at runtime.
- ),
- );
- protected $_defaults = array(
- 'before' => 'save',
- 'fields' => array(),
- 'mergeQuotes' => false, // Set to true for " or explicitly set a char (" or ').
- );
- /**
- * Initiate behavior for the model using specified settings.
- * Available settings:
- *
- * @param object $Model Model using the behaviour
- * @param array $settings Settings to override for model.
- * @return void
- */
- public function setup(Model $Model, $settings = array()) {
- if (!isset($this->settings[$Model->alias])) {
- $this->settings[$Model->alias] = $this->_defaults;
- }
- $this->settings[$Model->alias] = array_merge($this->settings[$Model->alias], $settings);
- if (empty($this->settings[$Model->alias]['fields'])) {
- $schema = $Model->schema();
- $fields = array();
- foreach ($schema as $field => $v) {
- if (!in_array($v['type'], array('string', 'text'))) {
- continue;
- }
- if (!empty($v['key'])) {
- continue;
- }
- if (isset($v['length']) && $v['length'] === 1) { // TODO: also skip UUID (lenght 36)?
- continue;
- }
- $fields[] = $field;
- }
- $this->settings[$Model->alias]['fields'] = $fields;
- }
- if ($this->settings[$Model->alias]['mergeQuotes'] === true) {
- $this->settings[$Model->alias]['mergeQuotes'] = '"';
- }
- }
- /**
- * TypographicBehavior::beforeValidate()
- *
- * @param Model $Model
- * @return boolean Success
- */
- public function beforeValidate(Model $Model, $options = array()) {
- parent::beforeValidate($Model, $options);
- if ($this->settings[$Model->alias]['before'] === 'validate') {
- $this->process($Model);
- }
- return true;
- }
- /**
- * TypographicBehavior::beforeSave()
- *
- * @param Model $Model
- * @return boolean Success
- */
- public function beforeSave(Model $Model, $options = array()) {
- parent::beforeSave($Model, $options);
- if ($this->settings[$Model->alias]['before'] === 'save') {
- $this->process($Model);
- }
- return true;
- }
- /**
- * Run the behavior over all records of this model
- * This is useful if you attach it after some records have already been saved without it.
- *
- * @param Model $Model The model about to be saved.
- * @return integer $count Number of affected/changed records
- */
- public function updateTypography(Model $Model, $dryRun = false) {
- $options = array('recursive' => -1, 'limit' => 100, 'offset' => 0);
- $count = 0;
- while ($records = $Model->find('all', $options)) {
- foreach ($records as $record) {
- $changed = false;
- foreach ($this->settings[$Model->alias]['fields'] as $field) {
- if (empty($record[$Model->alias][$field])) {
- continue;
- }
- $tmp = $this->_prepareInput($Model, $record[$Model->alias][$field]);
- if ($tmp == $record[$Model->alias][$field]) {
- continue;
- }
- $record[$Model->alias][$field] = $tmp;
- $changed = true;
- }
- if ($changed) {
- if (!$dryRun) {
- $Model->save($record, false);
- }
- $count++;
- }
- }
- $options['offset'] += 100;
- }
- return $count;
- }
- /**
- * Run before a model is saved
- *
- * @param object $Model Model about to be saved.
- * @return boolean true if save should proceed, false otherwise
- */
- public function process(Model $Model, $return = true) {
- foreach ($this->settings[$Model->alias]['fields'] as $field) {
- if (!empty($Model->data[$Model->alias][$field])) {
- $Model->data[$Model->alias][$field] = $this->_prepareInput($Model, $Model->data[$Model->alias][$field]);
- }
- }
- return $return;
- }
- /**
- * @param string $input
- * @return string $cleanedInput
- * 2011-12-06 ms
- */
- protected function _prepareInput(Model $Model, $string) {
- $map = $this->_map['in'];
- if ($this->settings[$Model->alias]['mergeQuotes']) {
- foreach ($map as $key => $val) {
- $map[$key] = $this->settings[$Model->alias]['mergeQuotes'];
- }
- }
- return str_replace(array_keys($map), array_values($map), $string);
- }
- }
|