api: fix minor issues

This commit is contained in:
Abdullah Atta
2025-10-03 08:34:20 +05:00
committed by Abdullah Atta
parent 41a185bd9f
commit 908d64bd4f
4 changed files with 14 additions and 6 deletions

View File

@@ -102,7 +102,7 @@ namespace Notesnook.API.Controllers
} }
[HttpPost] [HttpPost]
public async Task<IActionResult> PublishAsync([FromQuery] string deviceId, [FromBody] Monograph monograph) public async Task<IActionResult> PublishAsync([FromQuery] string? deviceId, [FromBody] Monograph monograph)
{ {
try try
{ {
@@ -150,7 +150,7 @@ namespace Notesnook.API.Controllers
} }
[HttpPatch] [HttpPatch]
public async Task<IActionResult> UpdateAsync([FromQuery] string deviceId, [FromBody] Monograph monograph) public async Task<IActionResult> UpdateAsync([FromQuery] string? deviceId, [FromBody] Monograph monograph)
{ {
try try
{ {
@@ -265,7 +265,7 @@ namespace Notesnook.API.Controllers
} }
[HttpDelete("{id}")] [HttpDelete("{id}")]
public async Task<IActionResult> DeleteAsync([FromQuery] string deviceId, [FromRoute] string id) public async Task<IActionResult> DeleteAsync([FromQuery] string? deviceId, [FromRoute] string id)
{ {
var monograph = await FindMonographAsync(id); var monograph = await FindMonographAsync(id);
if (monograph == null || monograph.Deleted) if (monograph == null || monograph.Deleted)

View File

@@ -56,6 +56,13 @@ namespace Notesnook.API.Controllers
if (!HttpContext.Request.Headers.ContentLength.HasValue) return BadRequest(new { error = "No Content-Length header found." }); if (!HttpContext.Request.Headers.ContentLength.HasValue) return BadRequest(new { error = "No Content-Length header found." });
long fileSize = HttpContext.Request.Headers.ContentLength.Value; long fileSize = HttpContext.Request.Headers.ContentLength.Value;
if (fileSize == 0)
{
var uploadUrl = S3Service.GetUploadObjectUrl(userId, name);
if (uploadUrl == null) return BadRequest(new { error = "Could not create signed url." });
return Ok(uploadUrl);
}
var subscriptionService = await WampServers.SubscriptionServer.GetServiceAsync<IUserSubscriptionService>(SubscriptionServerTopics.UserSubscriptionServiceTopic); var subscriptionService = await WampServers.SubscriptionServer.GetServiceAsync<IUserSubscriptionService>(SubscriptionServerTopics.UserSubscriptionServiceTopic);
var subscription = await subscriptionService.GetUserSubscriptionAsync(Clients.Notesnook.Id, userId); var subscription = await subscriptionService.GetUserSubscriptionAsync(Clients.Notesnook.Id, userId);

View File

@@ -75,7 +75,7 @@ namespace Notesnook.API.Models
public bool SelfDestruct { get; set; } public bool SelfDestruct { get; set; }
[JsonPropertyName("encryptedContent")] [JsonPropertyName("encryptedContent")]
public EncryptedData EncryptedContent { get; set; } public EncryptedData? EncryptedContent { get; set; }
[JsonPropertyName("datePublished")] [JsonPropertyName("datePublished")]
public long DatePublished { get; set; } public long DatePublished { get; set; }
@@ -85,10 +85,10 @@ namespace Notesnook.API.Models
public string Content { get; set; } public string Content { get; set; }
[JsonIgnore] [JsonIgnore]
public byte[] CompressedContent { get; set; } public byte[]? CompressedContent { get; set; }
[JsonPropertyName("password")] [JsonPropertyName("password")]
public EncryptedData Password { get; set; } public EncryptedData? Password { get; set; }
[JsonPropertyName("deleted")] [JsonPropertyName("deleted")]
public bool Deleted { get; set; } public bool Deleted { get; set; }

View File

@@ -87,6 +87,7 @@ namespace Notesnook.API.Services
Plan = SubscriptionPlan.FREE, Plan = SubscriptionPlan.FREE,
UserId = response.UserId, UserId = response.UserId,
StartTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(), StartTime = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(),
Timestamp = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(),
}); });
} }