mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
38 lines
915 B
C#
38 lines
915 B
C#
using Esiur.Core;
|
|
using Esiur.Net.IIP;
|
|
using Esiur.Net.Packets;
|
|
using Esiur.Resource;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Net.HTTP;
|
|
public class IIPoHTTP : HTTPFilter
|
|
{
|
|
[Attribute]
|
|
EntryPoint EntryPoint { get; set; }
|
|
|
|
public override AsyncReply<bool> Execute(HTTPConnection sender)
|
|
{
|
|
if (sender.Request.URL != "iip")
|
|
return new AsyncReply<bool>(false);
|
|
|
|
IIPPacket.IIPPacketAction action = (IIPPacket.IIPPacketAction)Convert.ToByte(sender.Request.Query["a"]);
|
|
|
|
if (action == IIPPacket.IIPPacketAction.QueryLink)
|
|
{
|
|
EntryPoint.Query(sender.Request.Query["l"], null).Then(x =>
|
|
{
|
|
|
|
});
|
|
}
|
|
|
|
return new AsyncReply<bool>(true);
|
|
}
|
|
|
|
public override AsyncReply<bool> Trigger(ResourceTrigger trigger)
|
|
{
|
|
return new AsyncReply<bool>(true);
|
|
}
|
|
}
|