2022-02-06 19:22:24 -08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Net;
|
2022-02-06 19:37:51 -08:00
|
|
|
|
using MontoyaTech.Rest.Net;
|
2023-02-05 10:59:29 -08:00
|
|
|
|
using System.Net.Mime;
|
2022-02-06 19:22:24 -08:00
|
|
|
|
|
2022-02-06 19:37:51 -08:00
|
|
|
|
namespace MontoyaTech.Rest.Net.Example
|
2022-02-06 19:22:24 -08:00
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
public class User
|
|
|
|
|
{
|
|
|
|
|
public string Name = null;
|
|
|
|
|
|
2023-02-04 10:37:30 -08:00
|
|
|
|
public List<string> List = null;
|
|
|
|
|
|
|
|
|
|
public ulong Property { get; set; }
|
|
|
|
|
|
2023-02-05 10:59:29 -08:00
|
|
|
|
public User() { }
|
|
|
|
|
|
2022-02-06 19:22:24 -08:00
|
|
|
|
public User(string name)
|
|
|
|
|
{
|
|
|
|
|
this.Name = name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
var listener = new RouteListener(8080,
|
|
|
|
|
new Route(HttpRequestMethod.Get, "/status", Status),
|
|
|
|
|
new Route<double, double>(HttpRequestMethod.Post, "/add/{a}/{b}", Add),
|
2023-02-05 10:59:29 -08:00
|
|
|
|
new Route<string>(HttpRequestMethod.Get, "/auth/{username}", Exists),
|
|
|
|
|
new Route(HttpRequestMethod.Post, "/auth/signup", Signup),
|
|
|
|
|
new Route(HttpRequestMethod.Get, "/auth/", Json)
|
2022-02-06 19:22:24 -08:00
|
|
|
|
);
|
|
|
|
|
|
2023-02-06 10:46:38 -08:00
|
|
|
|
string code = listener.GenerateCSharpClient();
|
2023-02-04 08:26:09 -08:00
|
|
|
|
|
|
|
|
|
Console.WriteLine(code);
|
2023-02-03 13:33:28 -08:00
|
|
|
|
|
2023-02-02 09:51:34 -08:00
|
|
|
|
listener.RequestPreProcessEvent += (HttpListenerContext context) => {
|
2023-02-05 10:59:29 -08:00
|
|
|
|
Console.WriteLine($"[{context.Request.HttpMethod}] Request start: " + context.Request.RawUrl);
|
2023-01-26 10:08:56 -08:00
|
|
|
|
return true;
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-02 09:51:34 -08:00
|
|
|
|
listener.RequestPostProcessEvent += (HttpListenerContext context) =>
|
2023-01-26 10:08:56 -08:00
|
|
|
|
{
|
2023-02-05 10:59:29 -08:00
|
|
|
|
Console.WriteLine($"[{context.Request.HttpMethod}] Request end: " + context.Request.RawUrl);
|
2023-01-26 10:08:56 -08:00
|
|
|
|
};
|
|
|
|
|
|
2022-02-06 19:22:24 -08:00
|
|
|
|
listener.Start();
|
|
|
|
|
|
2023-01-26 10:08:56 -08:00
|
|
|
|
Console.WriteLine("Available routes:");
|
|
|
|
|
|
|
|
|
|
foreach (var route in listener.Routes)
|
|
|
|
|
Console.WriteLine($"- [{route.Method}] {route.Syntax}");
|
|
|
|
|
|
2023-02-05 10:59:29 -08:00
|
|
|
|
Console.WriteLine($"Rest api server running at {listener.BaseUrl}");
|
|
|
|
|
|
|
|
|
|
var client = new Client(listener.BaseUrl);
|
|
|
|
|
|
|
|
|
|
var result = client.Auth.Get();
|
2022-02-06 19:22:24 -08:00
|
|
|
|
|
|
|
|
|
listener.Block();
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-03 13:33:28 -08:00
|
|
|
|
[RouteGroup("Test")]
|
2023-02-04 08:26:09 -08:00
|
|
|
|
[RouteResponse(typeof(string))]
|
2023-02-02 09:51:34 -08:00
|
|
|
|
public static HttpListenerResponse Status(HttpListenerContext context)
|
2022-02-06 19:22:24 -08:00
|
|
|
|
{
|
2022-02-06 21:32:01 -08:00
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithText("Everything is operational. 👍");
|
2022-02-06 19:22:24 -08:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-03 13:33:28 -08:00
|
|
|
|
[RouteGroup("Test")]
|
2023-02-04 08:26:09 -08:00
|
|
|
|
[RouteResponse(typeof(string))]
|
2023-02-02 09:51:34 -08:00
|
|
|
|
public static HttpListenerResponse Add(HttpListenerContext context, double a, double b)
|
2022-02-06 19:22:24 -08:00
|
|
|
|
{
|
2022-02-06 21:32:01 -08:00
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithText((a + b).ToString());
|
2022-02-06 19:22:24 -08:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-05 10:59:29 -08:00
|
|
|
|
|
2023-02-03 13:33:28 -08:00
|
|
|
|
[RouteGroup("Test")]
|
2023-02-05 10:59:29 -08:00
|
|
|
|
[RouteRequest(typeof(User))]
|
|
|
|
|
public static HttpListenerResponse SignupRequest(HttpListenerContext context)
|
2022-02-06 19:22:24 -08:00
|
|
|
|
{
|
2023-02-05 10:59:29 -08:00
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK);
|
2022-02-06 21:32:01 -08:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-05 10:59:29 -08:00
|
|
|
|
[RouteGroup("Auth")]
|
|
|
|
|
[RouteName("UserExists")]
|
2023-02-06 09:01:06 -08:00
|
|
|
|
[RouteResponse(typeof(bool), Json = false)]
|
2023-02-05 10:59:29 -08:00
|
|
|
|
public static HttpListenerResponse Exists(HttpListenerContext context, string name)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Auth.Exists called, name:" + name);
|
|
|
|
|
|
2023-02-06 09:01:06 -08:00
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithText("true");
|
2023-02-05 10:59:29 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[RouteGroup("Auth")]
|
2023-02-04 08:26:09 -08:00
|
|
|
|
[RouteRequest(typeof(User))]
|
2023-02-05 10:59:29 -08:00
|
|
|
|
public static HttpListenerResponse Signup(HttpListenerContext context)
|
2023-02-04 08:26:09 -08:00
|
|
|
|
{
|
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-05 10:59:29 -08:00
|
|
|
|
[RouteGroup("Auth")]
|
|
|
|
|
[RouteName("Get")]
|
2023-02-04 08:26:09 -08:00
|
|
|
|
[RouteResponse(typeof(User))]
|
2023-02-02 09:51:34 -08:00
|
|
|
|
public static HttpListenerResponse Json(HttpListenerContext context)
|
2022-02-06 21:32:01 -08:00
|
|
|
|
{
|
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithJson(new User("Rest.Net"));
|
2022-02-06 19:22:24 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|