Don't do queries if not needed
This commit is contained in:
parent
414c5ddae0
commit
1b48799f08
|
@ -818,21 +818,22 @@ function photos_post(&$a) {
|
||||||
$imagedata = @file_get_contents($src);
|
$imagedata = @file_get_contents($src);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$r = q("select sum(octet_length(data)) as total from photo where uid = %d and scale = 0 and album != 'Contact Photos' ",
|
|
||||||
intval($a->data['user']['uid'])
|
|
||||||
);
|
|
||||||
|
|
||||||
$limit = service_class_fetch($a->data['user']['uid'],'photo_upload_limit');
|
$limit = service_class_fetch($a->data['user']['uid'],'photo_upload_limit');
|
||||||
|
|
||||||
if (($limit !== false) && (($r[0]['total'] + strlen($imagedata)) > $limit)) {
|
if ($limit) {
|
||||||
notice( upgrade_message() . EOL );
|
$r = q("select sum(octet_length(data)) as total from photo where uid = %d and scale = 0 and album != 'Contact Photos' ",
|
||||||
@unlink($src);
|
intval($a->data['user']['uid'])
|
||||||
$foo = 0;
|
);
|
||||||
call_hooks('photo_post_end',$foo);
|
$size = $r[0]['total'];
|
||||||
killme();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if (($size + strlen($imagedata)) > $limit) {
|
||||||
|
notice( upgrade_message() . EOL );
|
||||||
|
@unlink($src);
|
||||||
|
$foo = 0;
|
||||||
|
call_hooks('photo_post_end',$foo);
|
||||||
|
killme();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$ph = new Photo($imagedata, $type);
|
$ph = new Photo($imagedata, $type);
|
||||||
|
|
||||||
|
|
|
@ -112,23 +112,25 @@ function wall_attach_post(&$a) {
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = q("select sum(octet_length(data)) as total from attach where uid = %d ",
|
|
||||||
intval($page_owner_uid)
|
|
||||||
);
|
|
||||||
|
|
||||||
$limit = service_class_fetch($page_owner_uid,'attach_upload_limit');
|
$limit = service_class_fetch($page_owner_uid,'attach_upload_limit');
|
||||||
|
|
||||||
if(($limit !== false) && (($r[0]['total'] + strlen($imagedata)) > $limit)) {
|
if ($limit) {
|
||||||
$msg = upgrade_message(true);
|
$r = q("select sum(octet_length(data)) as total from photo where uid = %d and scale = 0 and album != 'Contact Photos' ",
|
||||||
if ($r_json) {
|
intval($page_owner_uid)
|
||||||
echo json_encode(array('error'=>$msg));
|
);
|
||||||
} else {
|
$size = $r[0]['total'];
|
||||||
echo $msg. EOL ;
|
|
||||||
}
|
|
||||||
@unlink($src);
|
|
||||||
killme();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if (($size + strlen($imagedata)) > $limit) {
|
||||||
|
$msg = upgrade_message(true);
|
||||||
|
if ($r_json) {
|
||||||
|
echo json_encode(array('error'=>$msg));
|
||||||
|
} else {
|
||||||
|
echo $msg. EOL ;
|
||||||
|
}
|
||||||
|
@unlink($src);
|
||||||
|
killme();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$filedata = @file_get_contents($src);
|
$filedata = @file_get_contents($src);
|
||||||
$mimetype = z_mime_content_type($filename);
|
$mimetype = z_mime_content_type($filename);
|
||||||
|
|
|
@ -166,21 +166,19 @@ function wall_upload_post(&$a, $desktopmode = true) {
|
||||||
intval($page_owner_uid)
|
intval($page_owner_uid)
|
||||||
);
|
);
|
||||||
$size = $r[0]['total'];
|
$size = $r[0]['total'];
|
||||||
} else
|
|
||||||
$size = 0;
|
|
||||||
|
|
||||||
if(($limit !== false) && (($size + strlen($imagedata)) > $limit)) {
|
if (($size + strlen($imagedata)) > $limit) {
|
||||||
$msg = upgrade_message(true);
|
$msg = upgrade_message(true);
|
||||||
if ($r_json) {
|
if ($r_json) {
|
||||||
echo json_encode(array('error'=>$msg));
|
echo json_encode(array('error'=>$msg));
|
||||||
} else {
|
} else {
|
||||||
echo $msg. EOL;
|
echo $msg. EOL;
|
||||||
|
}
|
||||||
|
@unlink($src);
|
||||||
|
killme();
|
||||||
}
|
}
|
||||||
@unlink($src);
|
|
||||||
killme();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$imagedata = @file_get_contents($src);
|
$imagedata = @file_get_contents($src);
|
||||||
$ph = new Photo($imagedata, $filetype);
|
$ph = new Photo($imagedata, $filetype);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue