BirdsiteLive/src/BirdsiteLive.Domain/ActivityPubService.cs

72 lines
2.3 KiB
C#
Raw Normal View History

2020-06-29 03:56:10 +02:00
using System;
using System.Net;
using System.Net.Http;
using System.Text;
2020-06-06 07:29:13 +02:00
using System.Threading.Tasks;
using BirdsiteLive.ActivityPub;
using Newtonsoft.Json;
2020-06-29 03:56:10 +02:00
using Org.BouncyCastle.Bcpg;
2020-06-06 07:29:13 +02:00
namespace BirdsiteLive.Domain
{
public interface IActivityPubService
{
Task<Actor> GetUser(string objectId);
2020-06-29 05:42:23 +02:00
Task<HttpStatusCode> PostDataAsync<T>(T data, string targetHost, string actorUrl, string inbox = null);
2020-06-06 07:29:13 +02:00
}
public class ActivityPubService : IActivityPubService
{
2020-06-29 03:56:10 +02:00
private readonly ICryptoService _cryptoService;
#region Ctor
public ActivityPubService(ICryptoService cryptoService)
{
_cryptoService = cryptoService;
}
#endregion
2020-06-06 07:29:13 +02:00
public async Task<Actor> GetUser(string objectId)
{
using (var httpClient = new HttpClient())
{
httpClient.DefaultRequestHeaders.Add("Accept", "application/json");
var result = await httpClient.GetAsync(objectId);
var content = await result.Content.ReadAsStringAsync();
return JsonConvert.DeserializeObject<Actor>(content);
}
}
2020-06-29 03:56:10 +02:00
2020-06-29 05:42:23 +02:00
public async Task<HttpStatusCode> PostDataAsync<T>(T data, string targetHost, string actorUrl, string inbox = null)
2020-06-29 03:56:10 +02:00
{
2020-06-29 05:42:23 +02:00
var usedInbox = $"/inbox";
if (!string.IsNullOrWhiteSpace(inbox))
usedInbox = inbox;
2020-06-29 03:56:10 +02:00
var json = JsonConvert.SerializeObject(data);
var date = DateTime.UtcNow.ToUniversalTime();
var httpDate = date.ToString("r");
2020-06-29 05:42:23 +02:00
var signature = _cryptoService.SignAndGetSignatureHeader(date, actorUrl, targetHost, usedInbox);
2020-06-29 03:56:10 +02:00
var client = new HttpClient();
var httpRequestMessage = new HttpRequestMessage
{
Method = HttpMethod.Post,
2020-06-29 05:42:23 +02:00
RequestUri = new Uri($"https://{targetHost}/{usedInbox}"),
2020-06-29 03:56:10 +02:00
Headers =
{
{"Host", targetHost},
{"Date", httpDate},
{"Signature", signature}
},
Content = new StringContent(json, Encoding.UTF8, "application/ld+json")
};
var response = await client.SendAsync(httpRequestMessage);
return response.StatusCode;
}
2020-06-06 07:29:13 +02:00
}
}