BlazorStart/Start/Server/Controllers/BookmarksController.cs

50 lines
1.7 KiB
C#
Raw Normal View History

2021-11-14 03:27:01 +00:00
using System.Collections.Generic;
2021-11-13 03:21:59 +00:00
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Start.Server.Data.Services.Interfaces;
2021-11-14 03:27:01 +00:00
using Start.Server.Extensions;
2021-11-13 03:21:59 +00:00
using Start.Server.Models;
namespace Start.Server.Controllers {
[Authorize]
[ApiController]
[Route("[controller]")]
public class BookmarksController : ControllerBase {
2021-11-14 03:27:01 +00:00
private readonly IBookmarkContainerService bookmarkContainerService;
private readonly IBookmarkGroupService bookmarkGroupService;
2021-11-13 03:21:59 +00:00
private readonly IBookmarkService bookmarkService;
2021-11-14 03:27:01 +00:00
private readonly string userId;
public BookmarksController(IBookmarkContainerService bookmarkContainerService,
IBookmarkGroupService bookmarkGroupService, IBookmarkService bookmarkService) {
this.bookmarkContainerService = bookmarkContainerService;
this.bookmarkGroupService = bookmarkGroupService;
2021-11-13 03:21:59 +00:00
this.bookmarkService = bookmarkService;
2021-11-14 03:27:01 +00:00
this.userId = this.GetAuthorizedUserId();
2021-11-13 03:21:59 +00:00
}
[HttpGet]
public IList<BookmarkContainer> GetAllBookmarkContainers() {
2021-11-14 03:27:01 +00:00
return this.bookmarkContainerService.GetUserBookmarkContainers(this.userId);
2021-11-13 03:21:59 +00:00
}
[HttpGet]
2021-11-14 03:27:01 +00:00
public (BookmarkStatus, BookmarkContainer?) GetBookmarkContainer(int bookmarkContainerId) {
return this.bookmarkContainerService.GetBookmarkContainer(this.userId, bookmarkContainerId, true, true);
2021-11-13 03:21:59 +00:00
}
2021-11-14 01:19:28 +00:00
[HttpGet]
public (BookmarkStatus, Bookmark?) GetBookmark(int bookmarkId) {
2021-11-14 03:27:01 +00:00
return this.bookmarkService.GetBookmark(this.userId, bookmarkId);
2021-11-14 01:19:28 +00:00
}
2021-11-13 03:21:59 +00:00
[HttpPost]
2021-11-14 01:19:28 +00:00
public (BookmarkStatus, Bookmark?) CreateBookmark(string title, string url, string? notes,
2021-11-13 03:21:59 +00:00
int bookmarkGroupId) {
2021-11-14 03:27:01 +00:00
return this.bookmarkService.CreateBookmark(this.userId, title, url, notes, bookmarkGroupId);
2021-11-14 01:19:28 +00:00
}
2021-11-13 03:21:59 +00:00
}
}