From 6ee3f35302d739a5be1287839bfbb13ec86c1800 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 11 Aug 2010 15:56:40 -0700 Subject: work in progress: prettier attachment mode for tinymce? --- actions/newnotice.php | 5 +- plugins/TinyMCE/TinyMCEPlugin.php | 103 ++++++++++++++++++++++++++++++++++---- 2 files changed, 97 insertions(+), 11 deletions(-) diff --git a/actions/newnotice.php b/actions/newnotice.php index 8263198f7..8f1fb1c40 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -169,7 +169,10 @@ class NewnoticeAction extends Action if (isset($upload)) { - $content_shortened .= ' ' . $upload->shortUrl(); + if (Event::handle('StartSaveNewNoticeAppendAttachment', array($this, $upload, &$content_shortened, &$options))) { + $content_shortened .= ' ' . $upload->shortUrl(); + } + Event::handle('EndSaveNewNoticeAppendAttachment', array($this, $upload, &$content_shortened, &$options)); if (Notice::contentTooLong($content_shortened)) { $upload->delete(); diff --git a/plugins/TinyMCE/TinyMCEPlugin.php b/plugins/TinyMCE/TinyMCEPlugin.php index 8112b7dbb..e482ab320 100644 --- a/plugins/TinyMCE/TinyMCEPlugin.php +++ b/plugins/TinyMCE/TinyMCEPlugin.php @@ -1,4 +1,5 @@ script(common_path('plugins/TinyMCE/js/jquery.tinymce.js')); $action->inlineScript($this->_inlineScript()); } @@ -70,11 +70,11 @@ class TinyMCEPlugin extends Plugin function onPluginVersion(&$versions) { $versions[] = array('name' => 'TinyMCE', - 'version' => STATUSNET_VERSION, - 'author' => 'Evan Prodromou', - 'homepage' => 'http://status.net/wiki/Plugin:TinyMCE', - 'rawdescription' => - _m('Use TinyMCE library to allow rich text editing in the browser')); + 'version' => STATUSNET_VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:TinyMCE', + 'rawdescription' => + _m('Use TinyMCE library to allow rich text editing in the browser')); return true; } @@ -86,10 +86,10 @@ class TinyMCEPlugin extends Plugin */ private function sanitizeHtml($raw) { - require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php'; + require_once INSTALLDIR . '/extlib/htmLawed/htmLawed.php'; $config = array('safe' => 1, - 'deny_attribute' => 'id,style,on*'); + 'deny_attribute' => 'id,style,on*'); return htmLawed($raw, $config); } @@ -125,6 +125,75 @@ class TinyMCEPlugin extends Plugin return true; } + /** + * Hook for new-notice form processing to process file upload appending... + * + * @param NewNoticeAction $action + * @param MediaFile $media + * @param string $content + * @param array $options + * @return boolean hook return + */ + function onStartSaveNewNoticeAppendAttachment($action, $media, &$content, &$options) + { + if ($action->arg('richedit')) { + // See if we've got a placeholder inline image; if so, fill it! + $dom = new DOMDocument(); + common_log(LOG_INFO, 'QQQQQQQQQQQQQQQQQQQQQQQQ'); + if ($dom->loadHTML($options['rendered'])) { + $imgs = $dom->getElementsByTagName('img'); + foreach ($imgs as $img) { + common_log(LOG_INFO, 'img: ' . var_export($img, true)); + if (preg_match('/(^| )placeholder( |$)/', $img->getAttribute('class'))) { + common_log(LOG_INFO, 'QQQQQQ: img src: ' . $media->fileRecord->url); + $img->setAttribute('src', $media->fileRecord->url); + $holderWidth = intval($img->getAttribute('width')); + $holderHeight = intval($img->getAttribute('height')); + $holderAspect = $holderWidth / $holderHeight; + + $path = File::path($media->filename); + $imgInfo = getimagesize($path); + common_log(LOG_INFO, 'QQQQQQ: ' . $path . ' : ' . var_export($imgInfo, true)); + + $origWidth = $imgInfo[0]; + $origHeight = $imgInfo[1]; + $origAspect = $origWidth / $origHeight; + if ($origAspect >= 1.0) { + // wide image + if ($origWidth > $holderWidth) { + $width = $holderWidth; + $height = intval($holderWidth / $origAspect); + } else { + $width = $origWidth; + $height = $origHeight; + } + } else { + if ($origHeight > $holderHeight) { + $height = $holderHeight; + $width = ($holderWidth * $origAspect); + } else { + $width = $origWidth; + $height = $origHeight; + } + } + + $img->setAttribute('width', $width); + $img->setAttribute('height', $height); + + common_log(LOG_INFO, 'QQQQQ: ' . $width . ' ' . $height); + } + } + $html = $dom->saveHTML(); + common_log(LOG_INFO, 'QQQQQQ: out: ' . $html); + $options['rendered'] = $html; + } + + // The regular code will append the short URL to the plaintext content. + // Carry on and let it through... + } + return true; + } + function _inlineScript() { $path = common_path('plugins/TinyMCE/js/tiny_mce.js'); @@ -153,10 +222,24 @@ class TinyMCEPlugin extends Plugin tinymce.triggerSave(); } }); + $('#'+SN.C.S.NoticeDataAttach).change(function() { + /* + S = '
'+$(this).val()+'
'; + NDAS = $('#'+SN.C.S.NoticeDataAttachSelected); + if (NDAS.length > 0) { + NDAS.replaceWith(S); + } + */ + //alert('yay'); + var img = ''; + var html = tinyMCE.activeEditor.getContent(); + tinyMCE.activeEditor.setContent(html + img); + }); }); END_OF_SCRIPT; return $scr; } + } -- cgit v1.2.3