@@ -45,10 +45,10 @@ |
||
| 45 | 45 | */ |
| 46 | 46 | public static function check($user1, $user2) |
| 47 | 47 | { |
| 48 | - $query = self::where(function ($query) use ($user1, $user2) { |
|
| 48 | + $query = self::where(function($query) use ($user1, $user2) { |
|
| 49 | 49 | $query->where('user_id', '=', $user1) |
| 50 | 50 | ->where('target_id', '=', $user2); |
| 51 | - })->orWhere(function ($query) use ($user1, $user2) { |
|
| 51 | + })->orWhere(function($query) use ($user1, $user2) { |
|
| 52 | 52 | $query->where('user_id', '=', $user2) |
| 53 | 53 | ->where('target_id', '=', $user1); |
| 54 | 54 | }); |
@@ -86,15 +86,15 @@ |
||
| 86 | 86 | public function getAnswerCount() |
| 87 | 87 | { |
| 88 | 88 | // check if count is cached |
| 89 | - if (MainApp::$Memory->get('commentpost.answer.count.' . $this->id) !== null) { |
|
| 90 | - return MainApp::$Memory->get('commentpost.answer.count.' . $this->id); |
|
| 89 | + if (MainApp::$Memory->get('commentpost.answer.count.'.$this->id) !== null) { |
|
| 90 | + return MainApp::$Memory->get('commentpost.answer.count.'.$this->id); |
|
| 91 | 91 | } |
| 92 | 92 | // get count from db |
| 93 | 93 | $count = CommentAnswer::where('comment_id', '=', $this->id) |
| 94 | 94 | ->where('moderate', '=', 0) |
| 95 | 95 | ->count(); |
| 96 | 96 | // save in cache |
| 97 | - MainApp::$Memory->set('commentpost.answer.count.' . $this->id, $count); |
|
| 97 | + MainApp::$Memory->set('commentpost.answer.count.'.$this->id, $count); |
|
| 98 | 98 | return $count; |
| 99 | 99 | } |
| 100 | 100 | } |
@@ -61,8 +61,8 @@ discard block |
||
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // check in cache |
| 64 | - if (MainApp::$Memory->get('profile.object.cache.' . $userId) !== null) { |
|
| 65 | - return MainApp::$Memory->get('profile.object.cache.' . $userId); |
|
| 64 | + if (MainApp::$Memory->get('profile.object.cache.'.$userId) !== null) { |
|
| 65 | + return MainApp::$Memory->get('profile.object.cache.'.$userId); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | // find row |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | $object = $profile->first(); |
| 77 | 77 | |
| 78 | - MainApp::$Memory->set('profile.object.cache.' . $userId, $object); |
|
| 78 | + MainApp::$Memory->set('profile.object.cache.'.$userId, $object); |
|
| 79 | 79 | return $object; |
| 80 | 80 | } |
| 81 | 81 | |
@@ -86,17 +86,17 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | public function getAvatarUrl($type = 'small') |
| 88 | 88 | { |
| 89 | - $default = '/upload/user/avatar/' . $type . '/default.jpg'; |
|
| 89 | + $default = '/upload/user/avatar/'.$type.'/default.jpg'; |
|
| 90 | 90 | if (!Arr::in($type, ['small', 'big', 'medium'])) { |
| 91 | - return MainApp::$Alias->scriptUrl . $default; |
|
| 91 | + return MainApp::$Alias->scriptUrl.$default; |
|
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - $route = '/upload/user/avatar/' . $type . '/' . $this->user_id . '.jpg'; |
|
| 94 | + $route = '/upload/user/avatar/'.$type.'/'.$this->user_id.'.jpg'; |
|
| 95 | 95 | if (File::exist($route)) { |
| 96 | - return MainApp::$Alias->scriptUrl . $route . '?mtime=' . File::mTime($route); |
|
| 96 | + return MainApp::$Alias->scriptUrl.$route.'?mtime='.File::mTime($route); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - return MainApp::$Alias->scriptUrl . $default; |
|
| 99 | + return MainApp::$Alias->scriptUrl.$default; |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | { |
| 108 | 108 | $userNick = $this->nick; |
| 109 | 109 | if ($userNick === null || Str::likeEmpty($userNick)) { |
| 110 | - $userNick = 'id' . $this->id; |
|
| 110 | + $userNick = 'id'.$this->id; |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | return $userNick; |
@@ -50,13 +50,13 @@ discard block |
||
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | // check if id is looks like integer |
| 53 | - if (!Any::isInt($id) || (int)$id < 1) { |
|
| 53 | + if (!Any::isInt($id) || (int) $id < 1) { |
|
| 54 | 54 | return null; |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | // check in memory cache object |
| 58 | - if (MainApp::$Memory->get('user.object.cache.' . $id) !== null) { |
|
| 59 | - return MainApp::$Memory->get('user.object.cache.' . $id); |
|
| 58 | + if (MainApp::$Memory->get('user.object.cache.'.$id) !== null) { |
|
| 59 | + return MainApp::$Memory->get('user.object.cache.'.$id); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | // not founded in memory? lets make query |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | ->find($id); |
| 65 | 65 | |
| 66 | 66 | // store cache and return object |
| 67 | - MainApp::$Memory->set('user.object.cache.' . $user->id, $user); |
|
| 67 | + MainApp::$Memory->set('user.object.cache.'.$user->id, $user); |
|
| 68 | 68 | return $user; |
| 69 | 69 | } |
| 70 | 70 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | public function getId(): ?int |
| 76 | 76 | { |
| 77 | - return (int)$this->id; |
|
| 77 | + return (int) $this->id; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | public static function isAuth(): bool |
| 96 | 96 | { |
| 97 | 97 | // get data from session |
| 98 | - $sessionUserId = (int)MainApp::$Session->get('ff_user_id', 0); |
|
| 98 | + $sessionUserId = (int) MainApp::$Session->get('ff_user_id', 0); |
|
| 99 | 99 | |
| 100 | 100 | // check if session contains user id data |
| 101 | 101 | if ($sessionUserId < 1) { |
@@ -128,10 +128,10 @@ discard block |
||
| 128 | 128 | return false; |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - $find = MainApp::$Memory->get('user.counter.cache.' . $id); |
|
| 131 | + $find = MainApp::$Memory->get('user.counter.cache.'.$id); |
|
| 132 | 132 | if (!$find) { |
| 133 | 133 | $find = self::where('id', $id)->count(); |
| 134 | - MainApp::$Memory->set('user.counter.cache.' . $id, $find); |
|
| 134 | + MainApp::$Memory->set('user.counter.cache.'.$id, $find); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | return $find === 1; |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | */ |
| 232 | 232 | public function inBlacklist(?string $target = null): bool |
| 233 | 233 | { |
| 234 | - if ($target === null || (int)$target < 1) { |
|
| 234 | + if ($target === null || (int) $target < 1) { |
|
| 235 | 235 | return false; |
| 236 | 236 | } |
| 237 | 237 | |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | $this->_content->save(); |
| 77 | 77 | |
| 78 | 78 | // update content author rating |
| 79 | - $authorId = (int)$this->_content->author_id; |
|
| 79 | + $authorId = (int) $this->_content->author_id; |
|
| 80 | 80 | if ($authorId > 0 && App::$User->isExist($authorId)) { |
| 81 | 81 | $authorObject = App::$User->identity($authorId); |
| 82 | 82 | if ($authorObject !== null) { |
@@ -48,12 +48,12 @@ discard block |
||
| 48 | 48 | public function check() |
| 49 | 49 | { |
| 50 | 50 | // check if user is auth'd or guest name is defined |
| 51 | - if (!App::$User->isAuth() && ((int)$this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) { |
|
| 51 | + if (!App::$User->isAuth() && ((int) $this->_configs['guestAdd'] !== 1 || Str::length($this->guestName) < 2)) { |
|
| 52 | 52 | throw new JsonException(__('Guest name is not defined')); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | // guest moderation |
| 56 | - if (!App::$User->isAuth() && (bool)$this->_configs['guestModerate']) { |
|
| 56 | + if (!App::$User->isAuth() && (bool) $this->_configs['guestModerate']) { |
|
| 57 | 57 | $captcha = App::$Request->request->get('captcha'); |
| 58 | 58 | if (!App::$Captcha->validate($captcha)) { |
| 59 | 59 | throw new JsonException(__('Captcha is incorrect! Click on image to refresh and try again')); |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | // check if message length is correct |
| 69 | - if (Str::length($this->message) < (int)$this->_configs['minLength'] || Str::length($this->message) > (int)$this->_configs['maxLength']) { |
|
| 69 | + if (Str::length($this->message) < (int) $this->_configs['minLength'] || Str::length($this->message) > (int) $this->_configs['maxLength']) { |
|
| 70 | 70 | throw new JsonException(__('Message length is incorrect. Current: %cur%, min - %min%, max - %max%', [ |
| 71 | 71 | 'cur' => Str::length($this->message), |
| 72 | 72 | 'min' => $this->_configs['minLength'], |
@@ -111,15 +111,15 @@ discard block |
||
| 111 | 111 | $record->lang = App::$Request->getLanguage(); |
| 112 | 112 | $record->ip = $this->ip; |
| 113 | 113 | // check if premoderation is enabled and user is guest |
| 114 | - if ((bool)$this->_configs['guestModerate'] && $this->_userId < 1) { |
|
| 114 | + if ((bool) $this->_configs['guestModerate'] && $this->_userId < 1) { |
|
| 115 | 115 | $record->moderate = 1; |
| 116 | 116 | } |
| 117 | 117 | $record->save(); |
| 118 | 118 | |
| 119 | 119 | // add notification for comment post owner |
| 120 | 120 | $commentPost = $record->post; |
| 121 | - if ($commentPost !== null && (int)$commentPost->user_id !== 0 && (int)$commentPost->user_id !== $this->_userId) { |
|
| 122 | - $notify = new EntityAddNotification((int)$commentPost->user_id); |
|
| 121 | + if ($commentPost !== null && (int) $commentPost->user_id !== 0 && (int) $commentPost->user_id !== $this->_userId) { |
|
| 122 | + $notify = new EntityAddNotification((int) $commentPost->user_id); |
|
| 123 | 123 | $notify->add($commentPost->pathway, EntityAddNotification::MSG_ADD_COMMENTANSWER, [ |
| 124 | 124 | 'snippet' => Text::snippet($this->message, 50), |
| 125 | 125 | 'post' => Text::snippet($commentPost->message, 50) |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | { |
| 59 | 59 | $this->_path = $path; |
| 60 | 60 | $this->_configs = $configs; |
| 61 | - $this->_page = (int)$offset; |
|
| 61 | + $this->_page = (int) $offset; |
|
| 62 | 62 | $this->_sort = $sort; |
| 63 | 63 | parent::__construct(); |
| 64 | 64 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | public function before() |
| 72 | 72 | { |
| 73 | 73 | // find one or more categories where we must looking for content items |
| 74 | - if ((int)$this->_configs['multiCategories'] === 1) { |
|
| 74 | + if ((int) $this->_configs['multiCategories'] === 1) { |
|
| 75 | 75 | $this->findCategories(); |
| 76 | 76 | } else { |
| 77 | 77 | $this->findCategory(); |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | */ |
| 91 | 91 | public function setItemLimit($limit) |
| 92 | 92 | { |
| 93 | - $this->_customItemLimit = (int)$limit; |
|
| 93 | + $this->_customItemLimit = (int) $limit; |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | /** |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | private function findCategories() |
| 119 | 119 | { |
| 120 | 120 | // get all categories for current path and child of it |
| 121 | - $query = ContentCategory::where('path', 'like', $this->_path . '%'); |
|
| 121 | + $query = ContentCategory::where('path', 'like', $this->_path.'%'); |
|
| 122 | 122 | if ($query->count() < 1) { |
| 123 | 123 | throw new NotFoundException(__('Category is not founded')); |
| 124 | 124 | } |
@@ -151,10 +151,10 @@ discard block |
||
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | // calculate selection offset |
| 154 | - $itemPerPage = (int)$this->_configs['itemPerCategory']; |
|
| 154 | + $itemPerPage = (int) $this->_configs['itemPerCategory']; |
|
| 155 | 155 | // check if custom itemlimit defined over model api |
| 156 | 156 | if ($this->_customItemLimit !== false) { |
| 157 | - $itemPerPage = (int)$this->_customItemLimit; |
|
| 157 | + $itemPerPage = (int) $this->_customItemLimit; |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | $offset = $this->_page * $itemPerPage; |
@@ -197,15 +197,15 @@ discard block |
||
| 197 | 197 | $catConfigs = $this->_currentCategory->configs; |
| 198 | 198 | // prepare rss url link for current category if enabled |
| 199 | 199 | $rssUrl = false; |
| 200 | - if ((int)$this->_configs['rss'] === 1 && (int)$catConfigs['showRss'] === 1) { |
|
| 201 | - $rssUrl = App::$Alias->baseUrl . '/content/rss/' . $this->_currentCategory->path; |
|
| 200 | + if ((int) $this->_configs['rss'] === 1 && (int) $catConfigs['showRss'] === 1) { |
|
| 201 | + $rssUrl = App::$Alias->baseUrl.'/content/rss/'.$this->_currentCategory->path; |
|
| 202 | 202 | $rssUrl = rtrim($rssUrl, '/'); |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | // prepare sorting urls |
| 206 | 206 | $catSortParams = []; |
| 207 | 207 | if (App::$Request->query->get('page')) { |
| 208 | - $catSortParams['page'] = (int)App::$Request->query->get('page'); |
|
| 208 | + $catSortParams['page'] = (int) App::$Request->query->get('page'); |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | $catSortUrls = [ |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | ]; |
| 226 | 226 | |
| 227 | 227 | // check if this category is hidden |
| 228 | - if (!(bool)$this->category['configs']['showCategory']) { |
|
| 228 | + if (!(bool) $this->category['configs']['showCategory']) { |
|
| 229 | 229 | throw new ForbiddenException(__('This category is not available to view')); |
| 230 | 230 | } |
| 231 | 231 | |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | // check if current user can rate item |
| 279 | 279 | $ignoredRate = App::$Session->get('content.rate.ignore'); |
| 280 | 280 | $canRate = true; |
| 281 | - if (Any::isArray($ignoredRate) && Arr::in((string)$row->id, $ignoredRate)) { |
|
| 281 | + if (Any::isArray($ignoredRate) && Arr::in((string) $row->id, $ignoredRate)) { |
|
| 282 | 282 | $canRate = false; |
| 283 | 283 | } |
| 284 | 284 | |
@@ -299,13 +299,13 @@ discard block |
||
| 299 | 299 | 'poster' => $row->getPosterUri(), |
| 300 | 300 | 'thumb' => $row->getPosterThumbUri(), |
| 301 | 301 | 'thumbSize' => File::size($row->getPosterThumbUri()), |
| 302 | - 'views' => (int)$row->views, |
|
| 303 | - 'rating' => (int)$row->rating, |
|
| 302 | + 'views' => (int) $row->views, |
|
| 303 | + 'rating' => (int) $row->rating, |
|
| 304 | 304 | 'canRate' => $canRate, |
| 305 | 305 | 'category' => $this->categories[$row->category_id], |
| 306 | - 'uri' => '/content/read/' . $itemPath, |
|
| 306 | + 'uri' => '/content/read/'.$itemPath, |
|
| 307 | 307 | 'tags' => $tags, |
| 308 | - 'important' => (bool)$row->important |
|
| 308 | + 'important' => (bool) $row->important |
|
| 309 | 309 | ]; |
| 310 | 310 | } |
| 311 | 311 | |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | $index = implode('-', $this->_skip); |
| 63 | 63 | // try to get this slow query from cache |
| 64 | - $cache = App::$Cache->getItem('entity.content.search.index.' . $index); |
|
| 64 | + $cache = App::$Cache->getItem('entity.content.search.index.'.$index); |
|
| 65 | 65 | if (!$cache->isHit()) { |
| 66 | 66 | $cache->set($this->makeSearch()); |
| 67 | 67 | $cache->expiresAfter(static::CACHE_TIME); |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | $this->items[] = [ |
| 95 | 95 | 'title' => $item->getLocaled('title'), |
| 96 | 96 | 'snippet' => Text::snippet($text), |
| 97 | - 'uri' => '/content/read/' . $item->getPath(), |
|
| 97 | + 'uri' => '/content/read/'.$item->getPath(), |
|
| 98 | 98 | 'thumb' => $item->getPosterThumbUri() |
| 99 | 99 | ]; |
| 100 | 100 | } |
@@ -44,8 +44,8 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | /** |
| 47 | - * Set default values from database record |
|
| 48 | - */ |
|
| 47 | + * Set default values from database record |
|
| 48 | + */ |
|
| 49 | 49 | public function before() |
| 50 | 50 | { |
| 51 | 51 | // set data from db record |
@@ -85,9 +85,9 @@ discard block |
||
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | /** |
| 88 | - * Form labels |
|
| 89 | - * @return array |
|
| 90 | - */ |
|
| 88 | + * Form labels |
|
| 89 | + * @return array |
|
| 90 | + */ |
|
| 91 | 91 | public function labels(): array |
| 92 | 92 | { |
| 93 | 93 | return [ |
@@ -100,9 +100,9 @@ discard block |
||
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
| 103 | - * Content update form validation rules |
|
| 104 | - * @return array |
|
| 105 | - */ |
|
| 103 | + * Content update form validation rules |
|
| 104 | + * @return array |
|
| 105 | + */ |
|
| 106 | 106 | public function rules(): array |
| 107 | 107 | { |
| 108 | 108 | $r = [ |
@@ -57,13 +57,13 @@ discard block |
||
| 57 | 57 | // set current user id |
| 58 | 58 | $this->authorId = App::$User->identity()->getId(); |
| 59 | 59 | // set true if it is a new content item |
| 60 | - if ($this->_record->id === null || (int)$this->_record->id < 1) { |
|
| 60 | + if ($this->_record->id === null || (int) $this->_record->id < 1) { |
|
| 61 | 61 | $this->_new = true; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | // set random path slug if not defined |
| 65 | 65 | if ($this->path === null || Str::likeEmpty($this->path)) { |
| 66 | - $randPath = date('d-m-Y') . '-' . Str::randomLatin(mt_rand(8, 12)); |
|
| 66 | + $randPath = date('d-m-Y').'-'.Str::randomLatin(mt_rand(8, 12)); |
|
| 67 | 67 | $this->path = Str::lowerCase($randPath); |
| 68 | 68 | } |
| 69 | 69 | } |
@@ -107,21 +107,21 @@ discard block |
||
| 107 | 107 | { |
| 108 | 108 | $r = [ |
| 109 | 109 | [['path', 'categoryId'], 'required'], |
| 110 | - ['title.' . App::$Request->getLanguage(), 'required'], |
|
| 111 | - ['text.' . App::$Request->getLanguage(), 'required', null, true, true], |
|
| 110 | + ['title.'.App::$Request->getLanguage(), 'required'], |
|
| 111 | + ['text.'.App::$Request->getLanguage(), 'required', null, true, true], |
|
| 112 | 112 | ['text', 'used', null, true, true], |
| 113 | 113 | ['path', 'direct_match', '/^[a-zA-Z0-9\-]+$/'], |
| 114 | 114 | ['categoryId', 'in', $this->categoryIds()], |
| 115 | 115 | ['path', 'Apps\Model\Front\Content\FormNarrowContentUpdate::validatePath'], |
| 116 | 116 | ['poster', 'used'], |
| 117 | 117 | ['poster', 'isFile', ['jpg', 'png', 'gif', 'jpeg']], |
| 118 | - ['poster', 'sizeFile', (int)$this->_configs['gallerySize'] * 1024] // in bytes |
|
| 118 | + ['poster', 'sizeFile', (int) $this->_configs['gallerySize'] * 1024] // in bytes |
|
| 119 | 119 | ]; |
| 120 | 120 | |
| 121 | 121 | foreach (App::$Properties->get('languages') as $lang) { |
| 122 | - $r[] = ['title.' . $lang, 'length_max', 120, null, true, true]; |
|
| 123 | - $r[] = ['keywords.' . $lang, 'length_max', 150]; |
|
| 124 | - $r[] = ['description.' . $lang, 'length_max', 250]; |
|
| 122 | + $r[] = ['title.'.$lang, 'length_max', 120, null, true, true]; |
|
| 123 | + $r[] = ['keywords.'.$lang, 'length_max', 150]; |
|
| 124 | + $r[] = ['description.'.$lang, 'length_max', 250]; |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | return $r; |
@@ -147,9 +147,9 @@ discard block |
||
| 147 | 147 | $this->_record->title = $this->title; |
| 148 | 148 | $this->_record->text = $this->text; |
| 149 | 149 | $this->_record->path = $this->path; |
| 150 | - $this->_record->category_id = (int)$this->categoryId; |
|
| 150 | + $this->_record->category_id = (int) $this->categoryId; |
|
| 151 | 151 | $this->_record->display = 0; // set to premoderation |
| 152 | - $this->_record->author_id = (int)$this->authorId; |
|
| 152 | + $this->_record->author_id = (int) $this->authorId; |
|
| 153 | 153 | if ($this->_new) { |
| 154 | 154 | $this->_record->comment_hash = $this->generateCommentHash(); |
| 155 | 155 | } |
@@ -159,8 +159,8 @@ discard block |
||
| 159 | 159 | // work with poster data |
| 160 | 160 | if ($this->poster !== null) { |
| 161 | 161 | // lets move poster from tmp to gallery |
| 162 | - $originDir = '/upload/gallery/' . $this->_record->id . '/orig/'; |
|
| 163 | - $thumbDir = '/upload/gallery/' . $this->_record->id . '/thumb/'; |
|
| 162 | + $originDir = '/upload/gallery/'.$this->_record->id.'/orig/'; |
|
| 163 | + $thumbDir = '/upload/gallery/'.$this->_record->id.'/thumb/'; |
|
| 164 | 164 | if (!Directory::exist($originDir)) { |
| 165 | 165 | Directory::create($originDir); |
| 166 | 166 | } |
@@ -169,17 +169,17 @@ discard block |
||
| 169 | 169 | Directory::create($thumbDir); |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - $fileName = App::$Security->simpleHash($this->poster->getClientOriginalName() . $this->poster->getSize()); |
|
| 173 | - $newFullName = $fileName . '.' . $this->poster->guessExtension(); |
|
| 172 | + $fileName = App::$Security->simpleHash($this->poster->getClientOriginalName().$this->poster->getSize()); |
|
| 173 | + $newFullName = $fileName.'.'.$this->poster->guessExtension(); |
|
| 174 | 174 | // move poster to upload gallery directory |
| 175 | 175 | $this->poster->move(Normalize::diskFullPath($originDir), $newFullName); |
| 176 | 176 | // initialize image resizer |
| 177 | 177 | $thumb = new Image(); |
| 178 | - $thumb->setCacheDir(root . '/Private/Cache/images'); |
|
| 178 | + $thumb->setCacheDir(root.'/Private/Cache/images'); |
|
| 179 | 179 | |
| 180 | 180 | // open original file, resize it and save |
| 181 | - $thumbSaveName = Normalize::diskFullPath($thumbDir) . '/' . $fileName . '.jpg'; |
|
| 182 | - $thumb->open(Normalize::diskFullPath($originDir) . DIRECTORY_SEPARATOR . $newFullName) |
|
| 181 | + $thumbSaveName = Normalize::diskFullPath($thumbDir).'/'.$fileName.'.jpg'; |
|
| 182 | + $thumb->open(Normalize::diskFullPath($originDir).DIRECTORY_SEPARATOR.$newFullName) |
|
| 183 | 183 | ->cropResize($this->_configs['galleryResize']) |
| 184 | 184 | ->save($thumbSaveName, 'jpg', 90); |
| 185 | 185 | $thumb = null; |