forked from GNUsocial/gnu-social
the last url in the redirection chain can actually also be a redirection (e.g. if it's one of our /attachment/{file_id} links)
This commit is contained in:
parent
d94f9031ff
commit
efd2326a29
@ -170,43 +170,65 @@ class File_redirection extends Managed_DataObject
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
$r = File_redirection::getByUrl($in_url);
|
$r = File_redirection::getByUrl($in_url);
|
||||||
if($r instanceof File_redirection) {
|
|
||||||
try {
|
try {
|
||||||
$f = File::getKV('id',$r->file_id);
|
$f = File::getKV('id',$r->file_id);
|
||||||
$r->file = $f;
|
$r->file = $f;
|
||||||
$r->redir_url = $f->url;
|
$r->redir_url = $f->url;
|
||||||
} catch (NoResultException $e) {
|
} catch (NoResultException $e) {
|
||||||
// Invalid entry, delete and run again
|
// Invalid entry, delete and run again
|
||||||
common_log(LOG_ERR, "Could not find File with id=".$r->file_id." referenced in File_redirection, deleting File redirection entry and creating new File and File_redirection entries.");
|
common_log(LOG_ERR, "Could not find File with id=".$r->file_id." referenced in File_redirection, deleting File redirection entry and and trying again...");
|
||||||
$r->delete();
|
$r->delete();
|
||||||
return self::where($in_url);
|
return self::where($in_url);
|
||||||
}
|
}
|
||||||
|
// File_redirecion and File record found, return both
|
||||||
return $r;
|
return $r;
|
||||||
}
|
|
||||||
} catch (NoResultException $e) {
|
} catch (NoResultException $e) {
|
||||||
|
// File_redirecion record not found, but this might be a direct link to a file
|
||||||
try {
|
try {
|
||||||
$f = File::getByUrl($in_url);
|
$f = File::getByUrl($in_url);
|
||||||
$redir->file_id = $f->id;
|
$redir->file_id = $f->id;
|
||||||
$redir->file = $f;
|
$redir->file = $f;
|
||||||
return $redir;
|
return $redir;
|
||||||
} catch (NoResultException $e) {
|
} catch (NoResultException $e) {
|
||||||
// Oh well, let's keep going
|
// nope, this was not a direct link to a file either, let's keep going
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($discover) {
|
if ($discover) {
|
||||||
|
// try to follow redirects and get the final url
|
||||||
$redir_info = File_redirection::lookupWhere($in_url);
|
$redir_info = File_redirection::lookupWhere($in_url);
|
||||||
if(is_string($redir_info)) {
|
if(is_string($redir_info)) {
|
||||||
$redir_info = array('url' => $redir_info);
|
$redir_info = array('url' => $redir_info);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save the file if we don't have it already
|
// the last url in the redirection chain can actually be a redirect!
|
||||||
|
// this is the case with local /attachment/{file_id} links
|
||||||
|
// in that case we have the file id already
|
||||||
|
try {
|
||||||
|
$r = File_redirection::getByUrl($redir_info['url']);
|
||||||
|
try {
|
||||||
|
$f = File::getKV('id',$r->file_id);
|
||||||
|
$redir->file = $f;
|
||||||
|
$redir->redir_url = $f->url;
|
||||||
|
} catch (NoResultException $e) {
|
||||||
|
// Invalid entry in File_redirection, delete and run again
|
||||||
|
common_log(LOG_ERR, "Could not find File with id=".$r->file_id." referenced in File_redirection, deleting File_redirection entry and trying again...");
|
||||||
|
$r->delete();
|
||||||
|
return self::where($in_url);
|
||||||
|
}
|
||||||
|
} catch (NoResultException $e) {
|
||||||
|
// save the file now when we know that we don't have it in File_redirection
|
||||||
|
try {
|
||||||
$redir->file = File::saveNew($redir_info,$redir_info['url']);
|
$redir->file = File::saveNew($redir_info,$redir_info['url']);
|
||||||
|
} catch (ServerException $e) {
|
||||||
|
common_log(LOG_ERR, $e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// If this is a redirection, save it
|
// If this is a redirection and we have a file to redirect to, save it
|
||||||
// (if it hasn't been saved yet by some other process while we we
|
// (if it doesn't exist in File_redirection already)
|
||||||
// were running lookupWhere())
|
if($redir->file instanceof File && $redir_info['url'] != $in_url) {
|
||||||
if($redir_info['url'] != $in_url) {
|
|
||||||
try {
|
try {
|
||||||
$file_redir = File_redirection::getByUrl($in_url);
|
$file_redir = File_redirection::getByUrl($in_url);
|
||||||
} catch (NoResultException $e) {
|
} catch (NoResultException $e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user