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;
|
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;
|
|
|
|
|
|
|
|
|
|
public User(string name)
|
|
|
|
|
{
|
|
|
|
|
this.Name = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static explicit operator User(string input)
|
|
|
|
|
{
|
|
|
|
|
return new User(input.ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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),
|
2022-02-06 21:32:01 -08:00
|
|
|
|
new Route<User>(HttpRequestMethod.Post, "/signup/{username}", Signup),
|
|
|
|
|
new Route(HttpRequestMethod.Get, "/json", Json)
|
2022-02-06 19:22:24 -08:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
listener.Start();
|
|
|
|
|
|
|
|
|
|
Console.WriteLine($"Rest api server running at http://localhost:{listener.Port}");
|
|
|
|
|
|
|
|
|
|
listener.Block();
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-06 21:32:01 -08:00
|
|
|
|
public static HttpListenerResponse Status(RouteContext 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
|
|
|
|
}
|
|
|
|
|
|
2022-02-06 21:32:01 -08:00
|
|
|
|
public static HttpListenerResponse Add(RouteContext 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
|
|
|
|
}
|
|
|
|
|
|
2022-02-06 21:32:01 -08:00
|
|
|
|
public static HttpListenerResponse Signup(RouteContext context, User user)
|
2022-02-06 19:22:24 -08:00
|
|
|
|
{
|
2022-02-06 21:32:01 -08:00
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithText("User:" + user.Name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static HttpListenerResponse Json(RouteContext context)
|
|
|
|
|
{
|
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithJson(new User("Rest.Net"));
|
2022-02-06 19:22:24 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|