Creates the high-level HTTP client library the PostIt UI will consume to manage blog posts, circles, and per-post ACLs. Clients in this commit: - BlogApiClient (moved from PostIt/Services; same public surface, now depends on IYavscApiClient instead of the concrete class). - CircleApiClient (new): GET/POST/PUT/DELETE /api/circle. Takes the blogs base URL explicitly in its constructor so it doesn't need to know about PostIt's Settings type. - BlogAclApiClient (new): GET/POST/PUT/DELETE /api/blogacl. Same conventions as CircleApiClient. DTOs (Yavsc.Api.Client.Dtos): - CircleDto: id, name, ownerId, public. Stops short of the navigation properties on the server-side Circle (Owner, Members), which depend on ApplicationUser and other server types we don't want to drag into the client. - CircleAuthorizationDto: circleId, blogPostId, comment. Same reason: the server entity has Target and Allowed navigation properties the client never needs. The clients now require the caller to pass the blogs base URL explicitly in the constructor (previously the BlogApiClient sniffed it off YavscApiClient.Settings.BlogsApiUrl, but that field is PostIt-specific). The one production call site (App.axaml.cs) and four test call sites are updated to pass the URL. Build + 51/51 tests green. The IYavscApiClient abstraction was landed in the previous commit so this one could be a pure addition + relocation.
19 lines
712 B
C#
19 lines
712 B
C#
namespace Yavsc.Api.Client.Dtos;
|
|
|
|
/// <summary>
|
|
/// Wire format for <c>GET /api/blogacl</c> and friends.
|
|
///
|
|
/// <para>The server-side
|
|
/// <c>Yavsc.Models.Access.CircleAuthorizationToBlogPost</c> EF entity
|
|
/// carries virtual navigation properties (<c>Target</c>,
|
|
/// <c>Allowed</c>) that pull in the full BlogPost and Circle graphs.
|
|
/// The client never needs them: when showing the ACL of a post, the
|
|
/// UI already has the post, and the circles are looked up by id
|
|
/// against the list returned by <c>GET /api/circle</c>.</para>
|
|
/// </summary>
|
|
public sealed class CircleAuthorizationDto
|
|
{
|
|
public long CircleId { get; set; }
|
|
public long BlogPostId { get; set; }
|
|
public bool Comment { get; set; }
|
|
}
|