]> git.mxchange.org Git - friendica.git/commitdiff
White spaces
authorMichael <heluecht@pirati.ca>
Sun, 16 Jan 2022 20:17:31 +0000 (20:17 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 16 Jan 2022 20:17:31 +0000 (20:17 +0000)
src/Factory/Api/Friendica/Photo.php
src/Module/Api/Friendica/Group/Show.php
src/Module/Api/Friendica/Photo/Create.php
src/Module/Api/Friendica/Photo/Update.php
src/Module/Api/Twitter/Account/UpdateProfileImage.php
src/Module/Api/Twitter/Search/Tweets.php

index 9c0a48dea7d1dbfba87a1b0f40b3eff856cd4541..dad90d13f141d146c2801dcabef03d89aaa00e2e 100644 (file)
@@ -91,9 +91,9 @@ class Photo extends BaseFactory
                        $link = $this->baseUrl->get() . '/photo/' . $data['resource-id'] . '-' . $photo['scale'] . Images::getExtensionByMimeType($data['type']);
                        if ($type == 'xml') {
                                $data['links'][$photo['scale'] . ':link']['@attributes'] = [
-                                       'type' => $data['type'],
+                                       'type'  => $data['type'],
                                        'scale' => $photo['scale'],
-                                       'href' => $link
+                                       'href'  => $link
                                ];
                        } else {
                                $data['link'][$id] = $link;
@@ -108,6 +108,7 @@ class Photo extends BaseFactory
                if ($with_posts) {
                        // retrieve item element for getting activities (like, dislike etc.) related to photo
                        $condition = ['uid' => $uid, 'resource-id' => $photo_id];
+
                        $item = Post::selectFirst(['id', 'uid', 'uri', 'uri-id', 'parent', 'allow_cid', 'deny_cid', 'allow_gid', 'deny_gid'], $condition);
                }
                if (!empty($item)) {
@@ -147,7 +148,7 @@ class Photo extends BaseFactory
                } elseif ($with_posts) {
                        $data['friendica_activities'] = [];
                        $data['friendica_comments']   = [];
-                       $data['rights_mismatch'] = false;
+                       $data['rights_mismatch']      = false;
                }
 
                return $data;
index 1a0e7b6be57e0a7511c9121d0b6f4f9993de2d0f..d150827694b5a33b10c8607b1ded3c7e79f4ad0f 100644 (file)
@@ -36,7 +36,7 @@ class Show extends BaseApi
        {
                BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
                $uid  = BaseApi::getCurrentUserID();
-               $type = $this->getRequestValue($this->parameters, 'extension', 'json');         
+               $type = $this->getRequestValue($this->parameters, 'extension', 'json');
 
                // params
                $gid = $this->getRequestValue($request, 'gid', 0);
index c8ea2fbd78406e290fee2d8c5d862b4f06b84176..b0dc5d7a1442038837d22be3346f391f8d1d64fe 100644 (file)
@@ -54,7 +54,7 @@ class Create extends BaseApi
                $uid  = BaseApi::getCurrentUserID();
                $type = $this->getRequestValue($this->parameters, 'extension', 'json');
 
-               // input params 
+               // input params
                $desc      = $this->getRequestValue($request, 'desc');
                $album     = $this->getRequestValue($request, 'album');
                $allow_cid = $this->getRequestValue($request, 'allow_cid');
index 6723cad5389e5107ab807b98666149eeeb8a0205..44fd554b090d84968ef8eeaa6b00e0faa49389eb 100644 (file)
@@ -96,22 +96,22 @@ class Update extends BaseApi
                }
 
                if (!is_null($allow_cid)) {
-                       $allow_cid = trim($allow_cid);
+                       $allow_cid                   = trim($allow_cid);
                        $updated_fields['allow_cid'] = $allow_cid;
                }
 
                if (!is_null($deny_cid)) {
-                       $deny_cid = trim($deny_cid);
+                       $deny_cid                   = trim($deny_cid);
                        $updated_fields['deny_cid'] = $deny_cid;
                }
 
                if (!is_null($allow_gid)) {
-                       $allow_gid = trim($allow_gid);
+                       $allow_gid                   = trim($allow_gid);
                        $updated_fields['allow_gid'] = $allow_gid;
                }
 
                if (!is_null($deny_gid)) {
-                       $deny_gid = trim($deny_gid);
+                       $deny_gid                   = trim($deny_gid);
                        $updated_fields['deny_gid'] = $deny_gid;
                }
 
index 02194316b2ab56d99159b97634ecb87856c969fc..5af835289a4df845551dfb0ab287ebf98f2eacfb 100644 (file)
@@ -37,36 +37,36 @@ class UpdateProfileImage extends BaseApi
        {
                BaseApi::checkAllowedScope(BaseApi::SCOPE_WRITE);
                $uid = BaseApi::getCurrentUserID();
-       
+
                // get mediadata from image or media (Twitter call api/account/update_profile_image provides image)
                if (!empty($_FILES['image'])) {
                        $media = $_FILES['image'];
                } elseif (!empty($_FILES['media'])) {
                        $media = $_FILES['media'];
                }
-       
+
                // error if image data is missing
                if (empty($media)) {
                        throw new HTTPException\BadRequestException('no media data submitted');
                }
-               
+
                // save new profile image
                $resource_id = Photo::uploadAvatar($uid, $media);
                if (empty($resource_id)) {
                        throw new HTTPException\InternalServerErrorException('image upload failed');
                }
-       
+
                // output for client
                $skip_status = $this->getRequestValue($request, 'skip_status', false);
-       
+
                $user_info = DI::twitterUser()->createFromUserId($uid, $skip_status)->toArray();
-       
+
                // "verified" isn't used here in the standard
                unset($user_info['verified']);
-       
+
                // "uid" is only needed for some internal stuff, so remove it from here
                unset($user_info['uid']);
-       
+
                $this->response->exit('user', ['user' => $user_info], $this->parameters['extension'] ?? null);
        }
 }
index 0e0b2802e23fed707f71f09889c69e78274c1e05..5da579b7cec6effd43ec240cb8b2f720d707ee6c 100644 (file)
@@ -49,7 +49,7 @@ class Tweets extends BaseApi
 
                $data['status'] = [];
 
-               $count            = $this->getRequestValue($request, 'count', 15);
+               $count            = $this->getRequestValue($request, 'count', 20, 1, 100);
                $count            = $this->getRequestValue($request, 'rpp', $count);
                $since_id         = $this->getRequestValue($request, 'since_id', 0, 0);
                $max_id           = $this->getRequestValue($request, 'max_id', 0, 0);