API bookmark

This commit is contained in:
xiaomlove
2025-09-14 04:42:37 +07:00
parent 3eaa2fc14e
commit 01cbb0fa61
16 changed files with 94 additions and 22 deletions

View File

@@ -7,4 +7,6 @@ enum RoutePermissionEnum: string {
case TORRENT_VIEW = 'torrent:view'; case TORRENT_VIEW = 'torrent:view';
case TORRENT_UPLOAD = 'torrent:upload'; case TORRENT_UPLOAD = 'torrent:upload';
case USER_VIEW = "user:view"; case USER_VIEW = "user:view";
case BOOKMARK_STORE = "bookmark:store";
case BOOKMARK_DELETE = "bookmark:delete";
} }

View File

@@ -2,6 +2,7 @@
namespace App\Http\Controllers; namespace App\Http\Controllers;
use App\Http\Resources\BookmarkResource;
use App\Http\Resources\TorrentResource; use App\Http\Resources\TorrentResource;
use App\Models\Torrent; use App\Models\Torrent;
use App\Repositories\BookmarkRepository; use App\Repositories\BookmarkRepository;
@@ -25,7 +26,7 @@ class BookmarkController extends Controller
* Store a newly created resource in storage. * Store a newly created resource in storage.
* *
* @param \Illuminate\Http\Request $request * @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response * @return array
*/ */
public function store(Request $request) public function store(Request $request)
{ {
@@ -33,7 +34,8 @@ class BookmarkController extends Controller
'torrent_id' => 'required|integer', 'torrent_id' => 'required|integer',
]); ]);
$result = $this->repository->add(Auth::user(), $request->torrent_id); $result = $this->repository->add(Auth::user(), $request->torrent_id);
return $this->success($result->toArray(), nexus_trans('bookmark.actions.store_success')); $resource = new BookmarkResource($result);
return $this->success($resource, nexus_trans('bookmark.actions.store_success'));
} }
/** /**
@@ -62,12 +64,15 @@ class BookmarkController extends Controller
* Remove the specified resource from storage. * Remove the specified resource from storage.
* *
* @param int $id * @param int $id
* @return \Illuminate\Http\Response * @return array
*/ */
public function destroy($id) public function destroy(Request $request)
{ {
$result = $this->repository->remove(Auth::user(), $id); $request->validate([
return $this->success($result, nexus_trans('bookmark.actions.delete_success')); 'torrent_id' => 'required|integer',
]);
$result = $this->repository->remove(Auth::user(), $request->torrent_id);
return $this->success(true, nexus_trans('bookmark.actions.delete_success'));
} }
} }

View File

@@ -24,8 +24,7 @@ class Controller extends BaseController
protected ?array $extraSettingNames = null; protected ?array $extraSettingNames = null;
/** /**
* 返回成功信息,这里是旧方法,大部分情况下 $data 已经是 JsonResource * 返回成功信息
* 但很多地方有使用,历史原因保留不动,尽量使用 successJsonResource
* *
* @param $data * @param $data
* @param $msg * @param $msg
@@ -44,6 +43,7 @@ class Controller extends BaseController
/** /**
* 返回成功信息,对于不是 JsonResource 的数据,进行包装。返回的数据在 data.data 中 * 返回成功信息,对于不是 JsonResource 的数据,进行包装。返回的数据在 data.data 中
* *
* @deprecated 没有必要,已经在 api() 中添加 data 包裹,使用 success() 即可
* @param $data * @param $data
* @param $msg * @param $msg
* @return array * @return array

View File

@@ -37,7 +37,7 @@ class TokenController extends Controller
$newAccessToken = $user->createToken($request->name, $request->permissions); $newAccessToken = $user->createToken($request->name, $request->permissions);
$tokenText = $newAccessToken->plainTextToken; $tokenText = $newAccessToken->plainTextToken;
$msg = nexus_trans("token.create_success_tip", ['token' => $tokenText]); $msg = nexus_trans("token.create_success_tip", ['token' => $tokenText]);
return $this->successJsonResource(['token' => $tokenText], $msg); return $this->success(['token' => $tokenText], $msg);
} catch (\Exception $exception) { } catch (\Exception $exception) {
return $this->fail(false, $exception->getMessage()); return $this->fail(false, $exception->getMessage());
} }

View File

@@ -9,6 +9,10 @@ class Bookmark extends NexusModel
protected $fillable = ['userid', 'torrentid']; protected $fillable = ['userid', 'torrentid'];
const FILTER_IGNORE = '0';
const FILTER_INCLUDE = '1';
const FILTER_EXCLUDE = '2';
public function torrent() public function torrent()
{ {
return $this->belongsTo(Torrent::class, 'torrentid'); return $this->belongsTo(Torrent::class, 'torrentid');

View File

@@ -3,6 +3,7 @@
namespace App\Repositories; namespace App\Repositories;
use App\Exceptions\NexusException; use App\Exceptions\NexusException;
use App\Models\Bookmark;
use App\Models\Torrent; use App\Models\Torrent;
use App\Models\User; use App\Models\User;
@@ -10,11 +11,14 @@ class BookmarkRepository extends BaseRepository
{ {
public function add(User $user, $torrentId) public function add(User $user, $torrentId)
{ {
$torrent = Torrent::query()->findOrFail($torrentId); $torrent = Torrent::query()->find($torrentId);
if (!$torrent) {
throw new NexusException(nexus_trans('bookmark.torrent_not_exists', ['torrent_id' => $torrentId]));
}
$torrent->checkIsNormal(); $torrent->checkIsNormal();
$exists = $user->bookmarks()->where('torrentid', $torrentId)->exists(); $exists = $user->bookmarks()->where('torrentid', $torrentId)->exists();
if ($exists) { if ($exists) {
throw new NexusException("torrent: $torrentId already bookmarked."); throw new NexusException(nexus_trans('bookmark.torrent_already_bookmarked', ['torrent_id' => $torrentId]));
} }
$result = $user->bookmarks()->create(['torrentid' => $torrentId]); $result = $user->bookmarks()->create(['torrentid' => $torrentId]);
return $result; return $result;
@@ -22,12 +26,15 @@ class BookmarkRepository extends BaseRepository
public function remove(User $user, $torrentId) public function remove(User $user, $torrentId)
{ {
$torrent = Torrent::query()->findOrFail($torrentId); /**
$exists = $user->bookmarks()->where('torrentid', $torrentId)->exists(); * @var Bookmark $record
if (!$exists) { */
throw new NexusException("torrent: $torrentId has not been bookmarked."); $record = $user->bookmarks()->where('torrentid', $torrentId)->first();
if (!$record) {
throw new NexusException(nexus_trans('bookmark.torrent_has_not_been_bookmarked', ['torrent_id' => $torrentId]));
} }
$result = $user->bookmarks()->where('torrentid', $torrentId)->delete(); do_log("going to remove bookmark of torrent: $torrentId");
return $result; $record->delete();
return true;
} }
} }

View File

@@ -11,6 +11,8 @@ class TokenRepository extends BaseRepository
RoutePermissionEnum::TORRENT_VIEW->value, RoutePermissionEnum::TORRENT_VIEW->value,
RoutePermissionEnum::TORRENT_UPLOAD->value, RoutePermissionEnum::TORRENT_UPLOAD->value,
RoutePermissionEnum::USER_VIEW->value, RoutePermissionEnum::USER_VIEW->value,
RoutePermissionEnum::BOOKMARK_STORE->value,
RoutePermissionEnum::BOOKMARK_DELETE->value,
]; ];
public static function listUserTokenPermissions(bool $format = true): array public static function listUserTokenPermissions(bool $format = true): array

View File

@@ -9,6 +9,7 @@ use App\Exceptions\InsufficientPermissionException;
use App\Exceptions\NexusException; use App\Exceptions\NexusException;
use App\Http\Resources\TorrentResource; use App\Http\Resources\TorrentResource;
use App\Models\AudioCodec; use App\Models\AudioCodec;
use App\Models\Bookmark;
use App\Models\Category; use App\Models\Category;
use App\Models\Claim; use App\Models\Claim;
use App\Models\Codec; use App\Models\Codec;
@@ -36,6 +37,7 @@ use Carbon\Carbon;
use Elasticsearch\Endpoints\Search; use Elasticsearch\Endpoints\Search;
use Illuminate\Contracts\Auth\Authenticatable; use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Query\JoinClause;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Illuminate\Support\Arr; use Illuminate\Support\Arr;
use Illuminate\Support\Collection; use Illuminate\Support\Collection;
@@ -96,7 +98,8 @@ class TorrentRepository extends BaseRepository
]; ];
$allowFilters = [ $allowFilters = [
'title', 'category', 'source', 'medium', 'codec', 'audiocodec', 'standard', 'processing', 'team', 'title', 'category', 'source', 'medium', 'codec', 'audiocodec', 'standard', 'processing', 'team',
'owner', 'visible', 'added', 'size', 'sp_state', 'leechers', 'seeders', 'times_completed' 'owner', 'visible', 'added', 'size', 'sp_state', 'leechers', 'seeders', 'times_completed',
'bookmark'
]; ];
$allowSorts = ['id', 'comments', 'size', 'seeders', 'leechers', 'times_completed']; $allowSorts = ['id', 'comments', 'size', 'seeders', 'leechers', 'times_completed'];
$apiQueryBuilder = ApiQueryBuilder::for(TorrentResource::NAME, $query, $request) $apiQueryBuilder = ApiQueryBuilder::for(TorrentResource::NAME, $query, $request)
@@ -114,6 +117,18 @@ class TorrentRepository extends BaseRepository
}); });
} }
}) })
->registerCustomFilter('bookmark', function (Builder $query, Request $request) use ($user) {
$filterBookmark = $request->input(ApiQueryBuilder::PARAM_NAME_FILTER.".bookmark");
if ($filterBookmark === Bookmark::FILTER_INCLUDE) {
$query->whereHas("bookmarks", function (Builder $query) use ($user) {
$query->where("userid", $user->id);
});
} elseif ($filterBookmark === Bookmark::FILTER_EXCLUDE) {
$query->whereDoesntHave("bookmarks", function (Builder $query) use ($user) {
$query->where("userid", $user->id);
});
}
})
; ;
$query = $apiQueryBuilder->build(); $query = $apiQueryBuilder->build();
if (!$apiQueryBuilder->hasSort()) { if (!$apiQueryBuilder->hasSort()) {

View File

@@ -542,6 +542,8 @@ function api(...$args)
} }
if ($data instanceof \Illuminate\Http\Resources\Json\JsonResource) { if ($data instanceof \Illuminate\Http\Resources\Json\JsonResource) {
$data = $data->response()->getData(true); $data = $data->response()->getData(true);
} else {
$data = ['data' => $data];
} }
// dd($data); // dd($data);
$time = (float)number_format(microtime(true) - nexus()->getStartTimestamp(), 3); $time = (float)number_format(microtime(true) - nexus()->getStartTimestamp(), 3);

View File

@@ -4,5 +4,8 @@ return [
'actions' => [ 'actions' => [
'store_success' => 'Add to bookmark success!', 'store_success' => 'Add to bookmark success!',
'delete_success' => 'Cancel bookmark success!', 'delete_success' => 'Cancel bookmark success!',
] ],
'torrent_not_exists' => 'Torrent: :torrent_id not exists!',
'torrent_already_bookmarked' => 'Torrent: :torrent_id already bookmarked!',
'torrent_has_not_been_bookmarked' => 'Torrent: :torrent_id not bookmarked!',
]; ];

View File

@@ -17,4 +17,12 @@ return [
'text' => 'View user basic info', 'text' => 'View user basic info',
'desc' => 'View user basic info', 'desc' => 'View user basic info',
], ],
'bookmark:store' => [
'text' => 'Add bookmark',
'desc' => 'Add bookmark',
],
'bookmark:delete' => [
'text' => 'Delete bookmark',
'desc' => 'Delete bookmark',
],
]; ];

View File

@@ -4,5 +4,8 @@ return [
'actions' => [ 'actions' => [
'store_success' => '添加收藏成功!', 'store_success' => '添加收藏成功!',
'delete_success' => '取消收藏成功!', 'delete_success' => '取消收藏成功!',
] ],
'torrent_not_exists' => '种子: :torrent_id 不存在',
'torrent_already_bookmarked' => '种子: :torrent_id 已经收藏',
'torrent_has_not_been_bookmarked' => '种子: :torrent_id 未被收藏',
]; ];

View File

@@ -17,4 +17,12 @@ return [
'text' => '查看用户基本信息', 'text' => '查看用户基本信息',
'desc' => '查看用户基本信息', 'desc' => '查看用户基本信息',
], ],
'bookmark:store' => [
'text' => '添加收藏种子',
'desc' => '添加收藏的种子',
],
'bookmark:delete' => [
'text' => '删除收藏的种子',
'desc' => '删除收藏的种子',
],
]; ];

View File

@@ -4,5 +4,8 @@ return [
'actions' => [ 'actions' => [
'store_success' => '添加收藏成功!', 'store_success' => '添加收藏成功!',
'delete_success' => '取消收藏成功!', 'delete_success' => '取消收藏成功!',
] ],
'torrent_not_exists' => '種子: :torrent_id 不存在',
'torrent_already_bookmarked' => '種子: :torrent_id 已經收藏',
'torrent_has_not_been_bookmarked' => '種子: :torrent_id 未被收藏',
]; ];

View File

@@ -17,4 +17,12 @@ return [
'text' => '查看用戶基本信息', 'text' => '查看用戶基本信息',
'desc' => '查看用戶基本信息', 'desc' => '查看用戶基本信息',
], ],
'bookmark:store' => [
'text' => '添加收藏種子',
'desc' => '添加收藏的種子',
],
'bookmark:delete' => [
'text' => '刪除收藏的種子',
'desc' => '刪除收藏的種子',
],
]; ];

View File

@@ -34,7 +34,6 @@ Route::group(['middleware' => ['auth:sanctum']], function () {
// Route::resource('files', \App\Http\Controllers\FileController::class); // Route::resource('files', \App\Http\Controllers\FileController::class);
// Route::resource('thanks', \App\Http\Controllers\ThankController::class); // Route::resource('thanks', \App\Http\Controllers\ThankController::class);
// Route::resource('snatches', \App\Http\Controllers\SnatchController::class); // Route::resource('snatches', \App\Http\Controllers\SnatchController::class);
// Route::resource('bookmarks', \App\Http\Controllers\BookmarkController::class);
// Route::get('search-box', [\App\Http\Controllers\TorrentController::class, 'searchBox']); // Route::get('search-box', [\App\Http\Controllers\TorrentController::class, 'searchBox']);
// Route::resource('news', \App\Http\Controllers\NewsController::class); // Route::resource('news', \App\Http\Controllers\NewsController::class);
// Route::get('attend', [\App\Http\Controllers\AttendanceController::class, 'attend']); // Route::get('attend', [\App\Http\Controllers\AttendanceController::class, 'attend']);
@@ -55,6 +54,9 @@ Route::group(['middleware' => ['auth:sanctum']], function () {
Route::get('/profile/{id?}', [\App\Http\Controllers\UserController::class, 'show'])->middleware(ability(RoutePermissionEnum::USER_VIEW)); Route::get('/profile/{id?}', [\App\Http\Controllers\UserController::class, 'show'])->middleware(ability(RoutePermissionEnum::USER_VIEW));
Route::post('bookmarks', [\App\Http\Controllers\BookmarkController::class, 'store'])->middleware(ability(RoutePermissionEnum::BOOKMARK_STORE));
Route::post('bookmarks/delete', [\App\Http\Controllers\BookmarkController::class, 'destroy'])->middleware(ability(RoutePermissionEnum::BOOKMARK_DELETE));
}); });