Add $config['attachments']['process_links'] to allow disabling processing of mentioned URL links for attachment info (oEmbed lookups) and dereferencing of redirects that we didn't have shortened ourselves.

This option may be useful for intranet sites that don't have direct access to the internet, as they may be unable to successfully fetch those resources.
This commit is contained in:
Brion Vibber 2010-11-17 13:03:59 -08:00
parent 589aee587f
commit 197b56778a
6 changed files with 29 additions and 14 deletions

View File

@ -139,6 +139,7 @@ class File_redirection extends Memcached_DataObject
* reached. * reached.
* *
* @param string $in_url * @param string $in_url
* @param boolean $discover true to attempt dereferencing the redirect if we don't know it already
* @return mixed one of: * @return mixed one of:
* string - target URL, if this is a direct link or a known redirect * string - target URL, if this is a direct link or a known redirect
* array - redirect info if this is an *unknown* redirect: * array - redirect info if this is an *unknown* redirect:
@ -150,7 +151,7 @@ class File_redirection extends Memcached_DataObject
* size (optional): byte size from Content-Length header * size (optional): byte size from Content-Length header
* time (optional): timestamp from Last-Modified header * time (optional): timestamp from Last-Modified header
*/ */
public function where($in_url) { public function where($in_url, $discover=true) {
// let's see if we know this... // let's see if we know this...
$a = File::staticGet('url', $in_url); $a = File::staticGet('url', $in_url);
@ -166,8 +167,13 @@ class File_redirection extends Memcached_DataObject
} }
} }
$ret = File_redirection::lookupWhere($in_url); if ($discover) {
return $ret; $ret = File_redirection::lookupWhere($in_url);
return $ret;
} else {
// No manual dereferencing; leave the unknown URL as is.
return $in_url;
}
} }
/** /**

View File

@ -476,7 +476,9 @@ class Notice extends Memcached_DataObject
* @return void * @return void
*/ */
function saveUrls() { function saveUrls() {
common_replace_urls_callback($this->content, array($this, 'saveUrl'), $this->id); if (common_config('attachments', 'process_links')) {
common_replace_urls_callback($this->content, array($this, 'saveUrl'), $this->id);
}
} }
/** /**
@ -489,9 +491,11 @@ class Notice extends Memcached_DataObject
*/ */
function saveKnownUrls($urls) function saveKnownUrls($urls)
{ {
// @fixme validation? if (common_config('attachments', 'process_links')) {
foreach (array_unique($urls) as $url) { // @fixme validation?
File::processNew($url, $this->id); foreach (array_unique($urls) as $url) {
File::processNew($url, $this->id);
}
} }
} }

View File

@ -253,6 +253,7 @@ $default =
'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info 'show_thumbs' => true, // show thumbnails in notice lists for uploaded images, and photos and videos linked remotely that provide oEmbed info
'thumb_width' => 100, 'thumb_width' => 100,
'thumb_height' => 75, 'thumb_height' => 75,
'process_links' => true, // check linked resources for embeddable photos and videos; this will hit referenced external web sites when processing new messages.
), ),
'application' => 'application' =>
array('desclimit' => null), array('desclimit' => null),

View File

@ -848,7 +848,7 @@ function common_linkify($url) {
$canon = File_redirection::_canonUrl($url); $canon = File_redirection::_canonUrl($url);
$longurl_data = File_redirection::where($canon); $longurl_data = File_redirection::where($canon, common_config('attachments', 'process_links'));
if (is_array($longurl_data)) { if (is_array($longurl_data)) {
$longurl = $longurl_data['url']; $longurl = $longurl_data['url'];
} elseif (is_string($longurl_data)) { } elseif (is_string($longurl_data)) {
@ -872,8 +872,10 @@ function common_linkify($url) {
$f = File::staticGet('url', $longurl); $f = File::staticGet('url', $longurl);
if (empty($f)) { if (empty($f)) {
// XXX: this writes to the database. :< if (common_config('attachments', 'process_links')) {
$f = File::processNew($longurl); // XXX: this writes to the database. :<
$f = File::processNew($longurl);
}
} }
if (!empty($f)) { if (!empty($f)) {

View File

@ -50,7 +50,7 @@ class LinkPreviewPlugin extends Plugin
function onEndShowScripts($action) function onEndShowScripts($action)
{ {
$user = common_current_user(); $user = common_current_user();
if ($user) { if ($user && common_config('attachments', 'process_links')) {
$action->script('plugins/LinkPreview/linkpreview.js'); $action->script('plugins/LinkPreview/linkpreview.js');
$data = json_encode(array( $data = json_encode(array(
'api' => common_local_url('oembedproxy'), 'api' => common_local_url('oembedproxy'),

View File

@ -659,9 +659,11 @@ class TwitterImport
*/ */
function saveStatusAttachments($notice, $status) function saveStatusAttachments($notice, $status)
{ {
if (!empty($status->entities) && !empty($status->entities->urls)) { if (common_config('attachments', 'process_links')) {
foreach ($status->entities->urls as $url) { if (!empty($status->entities) && !empty($status->entities->urls)) {
File::processNew($url->url, $notice->id); foreach ($status->entities->urls as $url) {
File::processNew($url->url, $notice->id);
}
} }
} }
} }