X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fwall_attach.php;h=69763c2fe5f17a3b3155007c1838e863aee71a4a;hb=5c63de1692c5be4ca457e03fc037683909a44348;hp=957e25f543bc102f3fe50be0aa888dff84911fb6;hpb=a7ce601580b07e9b3e7653cbdb0a9b6bbb5c474e;p=friendica.git diff --git a/mod/wall_attach.php b/mod/wall_attach.php index 957e25f543..69763c2fe5 100644 --- a/mod/wall_attach.php +++ b/mod/wall_attach.php @@ -1,7 +1,16 @@ t('Invalid request.'))); + echo json_encode(['error'=>L10n::t('Invalid request.')]); killme(); } return; @@ -22,7 +31,7 @@ function wall_attach_post(App $a) { } else { if ($r_json) { - echo json_encode(array('error'=>t('Invalid request.'))); + echo json_encode(['error'=>L10n::t('Invalid request.')]); killme(); } return; @@ -55,7 +64,7 @@ function wall_attach_post(App $a) { intval($contact_id), intval($page_owner_uid) ); - if (dbm::is_result($r)) { + if (DBM::is_result($r)) { $can_post = true; $visitor = $contact_id; } @@ -64,16 +73,16 @@ function wall_attach_post(App $a) { } if(! $can_post) { if ($r_json) { - echo json_encode(array('error'=>t('Permission denied.'))); + echo json_encode(['error'=>L10n::t('Permission denied.')]); killme(); } - notice( t('Permission denied.') . EOL ); + notice(L10n::t('Permission denied.') . EOL ); killme(); } if(! x($_FILES,'userfile')) { if ($r_json) { - echo json_encode(array('error'=>t('Invalid request.'))); + echo json_encode(['error'=>L10n::t('Invalid request.')]); } killme(); } @@ -82,7 +91,7 @@ function wall_attach_post(App $a) { $filename = basename($_FILES['userfile']['name']); $filesize = intval($_FILES['userfile']['size']); - $maxfilesize = get_config('system','maxfilesize'); + $maxfilesize = Config::get('system','maxfilesize'); /* Found html code written in text field of form, * when trying to upload a file with filesize @@ -91,9 +100,9 @@ function wall_attach_post(App $a) { */ if($filesize <=0) { - $msg = t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(t('Or - did you try to upload an empty file?')); + $msg = L10n::t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(L10n::t('Or - did you try to upload an empty file?')); if ($r_json) { - echo json_encode(array('error'=>$msg)); + echo json_encode(['error'=>$msg]); } else { notice( $msg. EOL ); } @@ -102,9 +111,9 @@ function wall_attach_post(App $a) { } if(($maxfilesize) && ($filesize > $maxfilesize)) { - $msg = sprintf(t('File exceeds size limit of %s'), formatBytes($maxfilesize)); + $msg = L10n::t('File exceeds size limit of %s', formatBytes($maxfilesize)); if ($r_json) { - echo json_encode(array('error'=>$msg)); + echo json_encode(['error'=>$msg]); } else { echo $msg. EOL ; } @@ -112,50 +121,23 @@ function wall_attach_post(App $a) { 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'); - - if(($limit !== false) && (($r[0]['total'] + 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); + $mimetype = Mimetype::getContentType($filename); + $hash = System::createGUID(64); + $created = DateTimeFormat::utcNow(); + $fields = ['uid' => $page_owner_uid, 'hash' => $hash, 'filename' => $filename, 'filetype' => $mimetype, + 'filesize' => $filesize, 'data' => $filedata, 'created' => $created, 'edited' => $created, + 'allow_cid' => '<' . $page_owner_cid . '>', 'allow_gid' => '','deny_cid' => '', 'deny_gid' => '']; - $filedata = @file_get_contents($src); - $mimetype = z_mime_content_type($filename); - $hash = get_guid(64); - $created = datetime_convert(); - $r = q("INSERT INTO `attach` ( `uid`, `hash`, `filename`, `filetype`, `filesize`, `data`, `created`, `edited`, `allow_cid`, `allow_gid`,`deny_cid`, `deny_gid` ) - VALUES ( %d, '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ", - intval($page_owner_uid), - dbesc($hash), - dbesc($filename), - dbesc($mimetype), - intval($filesize), - dbesc($filedata), - dbesc($created), - dbesc($created), - dbesc('<' . $page_owner_cid . '>'), - dbesc(''), - dbesc(''), - dbesc('') - ); + $r = dba::insert('attach', $fields); @unlink($src); if(! $r) { - $msg = t('File upload failed.'); + $msg = L10n::t('File upload failed.'); if ($r_json) { - echo json_encode(array('error'=>$msg)); + echo json_encode(['error'=>$msg]); } else { echo $msg. EOL ; } @@ -168,10 +150,10 @@ function wall_attach_post(App $a) { dbesc($hash) ); - if (! dbm::is_result($r)) { - $msg = t('File upload failed.'); + if (! DBM::is_result($r)) { + $msg = L10n::t('File upload failed.'); if ($r_json) { - echo json_encode(array('error'=>$msg)); + echo json_encode(['error'=>$msg]); } else { echo $msg. EOL ; } @@ -179,7 +161,7 @@ function wall_attach_post(App $a) { } if ($r_json) { - echo json_encode(array('ok'=>true)); + echo json_encode(['ok'=>true]); killme(); }