]> git.mxchange.org Git - friendica.git/blobdiff - mod/attach.php
Rename DBM method calls to DBA method calls
[friendica.git] / mod / attach.php
index 274acfc2bed8af1f4e23af00eb267e6fa9925cfd..6a5f0a39e679b32a00615b4bae57ed4e88701305 100644 (file)
@@ -1,11 +1,19 @@
 <?php
+/**
+ * @file mod/attach.php
+ */
 
-require_once('include/security.php');
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Database\DBA;
 
-function attach_init(&$a) {
+require_once 'include/dba.php';
+require_once 'include/security.php';
 
-       if($a->argc != 2) {
-               notice( t('Item not available.') . EOL);
+function attach_init(App $a)
+{
+       if ($a->argc != 2) {
+               notice(L10n::t('Item not available.') . EOL);
                return;
        }
 
@@ -13,15 +21,13 @@ function attach_init(&$a) {
 
        // Check for existence, which will also provide us the owner uid
 
-       $r = q("SELECT * FROM `attach` WHERE `id` = %d LIMIT 1",
-               intval($item_id)
-       );
-       if(! dbm::is_result($r)) {
-               notice( t('Item was not found.'). EOL);
+       $r = DBA::selectFirst('attach', [], ['id' => $item_id]);
+       if (!DBA::is_result($r)) {
+               notice(L10n::t('Item was not found.'). EOL);
                return;
        }
 
-       $sql_extra = permissions_sql($r[0]['uid']);
+       $sql_extra = permissions_sql($r['uid']);
 
        // Now we'll see if we can access the attachment
 
@@ -29,8 +35,8 @@ function attach_init(&$a) {
                dbesc($item_id)
        );
 
-       if(! dbm::is_result($r)) {
-               notice( t('Permission denied.') . EOL);
+       if (!DBA::is_result($r)) {
+               notice(L10n::t('Permission denied.') . EOL);
                return;
        }
 
@@ -38,10 +44,11 @@ function attach_init(&$a) {
        // error in Chrome for filenames with commas in them
        header('Content-type: ' . $r[0]['filetype']);
        header('Content-length: ' . $r[0]['filesize']);
-       if(isset($_GET['attachment']) && $_GET['attachment'] === '0')
+       if (isset($_GET['attachment']) && $_GET['attachment'] === '0') {
                header('Content-disposition: filename="' . $r[0]['filename'] . '"');
-       else
+       } else {
                header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"');
+       }
 
        echo $r[0]['data'];
        killme();