Compare commits

..

3 Commits

Author SHA1 Message Date
3f580831a1 some scretches about file upload
Some checks failed
continuous-integration/drone/push Build is failing
2022-11-02 01:46:58 +10:00
016e5803a9 some scretches about file upload 2022-11-02 01:46:07 +10:00
b9d7f50cc9 some scretches about file upload 2022-11-02 01:45:42 +10:00
4 changed files with 29 additions and 8 deletions

View File

@ -0,0 +1,19 @@
using Microsoft.AspNetCore.Mvc;
using System.Net.Http.Headers;
using System.Text.Json;
namespace NeDvachAPI.Controllers
{
[ApiController]
[Route("[controller]")]
public class UploadPic : ControllerBase
{
[HttpPost(Name = "UploadPicture")]
public JsonResult ReceivePost([FromForm] IFormFile PostPicture)
{
Console.Write("Принята картинка ");
Console.WriteLine(PostPicture.FileName);
return new JsonResult(PostPicture.FileName + " получен!");
}
}
}

View File

@ -46,7 +46,7 @@ namespace NeDvachAPI
using ( var command = new NpgsqlCommand(@"
SELECT * FROM
(
SELECT post_id, post, post_timestamp
SELECT post_id, post, post_timestamp, post_pic
FROM dvach
ORDER BY post_id DESC
) subquery
@ -65,10 +65,17 @@ namespace NeDvachAPI
//);
Post receivedPost = new()
{
<<<<<<< HEAD
Id = reader.GetInt32(0),
Text = reader.GetString(1),
Timestamp = reader.GetString(2),
ImgURL = (string)reader.GetString(3)
=======
//Date = DateTime.Now,
Id = reader.GetInt32(0),
Text = reader.GetString(1),
Timestamp = reader.GetString(2)
>>>>>>> 10b089091585b363d2cf227a688da611f5870b5d
};
posts.Add(receivedPost);
//posts[postCount] = receivedPost;

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Controller_SelectedScaffolderID>MvcControllerWithActionsScaffolder</Controller_SelectedScaffolderID>
<Controller_SelectedScaffolderID>MvcControllerEmptyScaffolder</Controller_SelectedScaffolderID>
<Controller_SelectedScaffolderCategoryPath>root/Common/MVC/Controller</Controller_SelectedScaffolderCategoryPath>
</PropertyGroup>
</Project>

View File

@ -7,12 +7,7 @@ namespace NeDvachAPI
public int Id { get; set; }
public string Text { get; set; }
}
public class ReceivedValues
{
public string height { get; set; }
public string altitude { get; set; }
public string ImgURL { get; set; }
}
}