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;
|
2023-02-24 12:05:57 -08:00
|
|
|
|
using System.IO;
|
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
|
|
|
|
|
{
|
2023-03-23 08:23:08 -07:00
|
|
|
|
public class BaseUser
|
|
|
|
|
{
|
|
|
|
|
public string Id;
|
|
|
|
|
|
|
|
|
|
public UserRole Role { get; set; }
|
2023-03-24 06:52:00 -07:00
|
|
|
|
|
|
|
|
|
public List<Permission> Permissions;
|
|
|
|
|
|
|
|
|
|
public class Permission
|
|
|
|
|
{
|
|
|
|
|
public string Name;
|
|
|
|
|
|
|
|
|
|
public Types Type;
|
|
|
|
|
|
|
|
|
|
public enum Types { Read, Write }
|
|
|
|
|
}
|
2023-03-23 08:23:08 -07:00
|
|
|
|
}
|
|
|
|
|
|
2023-03-31 07:02:44 -07:00
|
|
|
|
[RouteTypeName("UserDto")]
|
2023-03-23 08:23:08 -07:00
|
|
|
|
public class User : BaseUser
|
2022-02-06 19:22:24 -08:00
|
|
|
|
{
|
2023-03-24 08:21:12 -07:00
|
|
|
|
public PlatformID MachineType;
|
|
|
|
|
|
2022-02-06 19:22:24 -08:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-23 08:23:08 -07:00
|
|
|
|
public enum UserRole : byte
|
|
|
|
|
{
|
|
|
|
|
Unknown = 0,
|
|
|
|
|
Admin = 2,
|
|
|
|
|
User = 1
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-24 07:15:42 -07:00
|
|
|
|
public class IncludedType
|
|
|
|
|
{
|
|
|
|
|
public int Test;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-01 16:19:20 -08:00
|
|
|
|
public static RouteFileCache FileCache = new RouteFileCache(100 * 1024 * 1024);
|
|
|
|
|
|
2022-02-06 19:22:24 -08:00
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
2023-02-24 12:05:57 -08:00
|
|
|
|
File.WriteAllText("test.txt", "hello from a file");
|
|
|
|
|
|
2022-02-06 19:22:24 -08:00
|
|
|
|
var listener = new RouteListener(8080,
|
|
|
|
|
new Route(HttpRequestMethod.Get, "/status", Status),
|
|
|
|
|
new Route<double, double>(HttpRequestMethod.Post, "/add/{a}/{b}", Add),
|
2023-02-24 12:05:57 -08:00
|
|
|
|
new Route(HttpRequestMethod.Get, "/compress", Compress),
|
|
|
|
|
new Route(HttpRequestMethod.Get, "/file/compress", CompressFile),
|
2023-02-05 10:59:29 -08:00
|
|
|
|
new Route<string>(HttpRequestMethod.Get, "/auth/{username}", Exists),
|
|
|
|
|
new Route(HttpRequestMethod.Post, "/auth/signup", Signup),
|
2023-03-23 08:23:08 -07:00
|
|
|
|
new Route(HttpRequestMethod.Get, "/auth/", Json),
|
2023-03-31 08:21:32 -07:00
|
|
|
|
new Route(HttpRequestMethod.Get, "/auth/role", GetRole),
|
|
|
|
|
new Route(HttpRequestMethod.Post, "/upload", Upload),
|
|
|
|
|
new Route(HttpRequestMethod.Get, "/download", Download)
|
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
|
|
|
|
|
2023-03-24 07:33:35 -07:00
|
|
|
|
File.WriteAllText("Client.cs", code);
|
|
|
|
|
|
2023-02-04 08:26:09 -08:00
|
|
|
|
Console.WriteLine(code);
|
2023-02-07 13:02:56 -08:00
|
|
|
|
Console.WriteLine();
|
|
|
|
|
|
|
|
|
|
string staticCode = listener.GenerateCSharpClient("StaticClient", staticCode: true);
|
|
|
|
|
|
2023-03-24 07:33:35 -07:00
|
|
|
|
File.WriteAllText("Client.Static.cs", staticCode);
|
|
|
|
|
|
2023-02-07 13:02:56 -08:00
|
|
|
|
Console.WriteLine(staticCode);
|
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}");
|
|
|
|
|
|
2023-03-31 08:21:32 -07:00
|
|
|
|
StaticClient.Init(listener.BaseUrl);
|
|
|
|
|
|
|
|
|
|
using (var stream = new MemoryStream())
|
|
|
|
|
{
|
|
|
|
|
var bytes = Encoding.UTF8.GetBytes("hello world!");
|
|
|
|
|
|
|
|
|
|
stream.Write(bytes, 0, bytes.Length);
|
|
|
|
|
|
|
|
|
|
StaticClient.Stream.Upload(stream);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
using (var stream = StaticClient.Stream.Download())
|
|
|
|
|
{
|
|
|
|
|
var str = Encoding.UTF8.GetString(stream.ToArray());
|
|
|
|
|
|
|
|
|
|
Console.WriteLine("Download output:" + str);
|
|
|
|
|
}
|
|
|
|
|
|
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-03-24 07:15:42 -07:00
|
|
|
|
[RouteInclude(typeof(IncludedType))]
|
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-24 12:05:57 -08:00
|
|
|
|
[RouteGroup("Test")]
|
|
|
|
|
[RouteResponse(typeof(string))]
|
|
|
|
|
public static HttpListenerResponse Compress(HttpListenerContext context)
|
|
|
|
|
{
|
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithCompressedText("hello world");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[RouteGroup("Test")]
|
|
|
|
|
[RouteResponse(typeof(string))]
|
|
|
|
|
public static HttpListenerResponse CompressFile(HttpListenerContext context)
|
|
|
|
|
{
|
2023-03-01 16:19:20 -08:00
|
|
|
|
var content = FileCache.Cache("test.txt");
|
|
|
|
|
|
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithCompressedFile("test.txt", content);
|
2023-02-24 12:05:57 -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-03-23 08:23:08 -07:00
|
|
|
|
[RouteGroup("Auth")]
|
|
|
|
|
[RouteResponse(typeof(UserRole))]
|
|
|
|
|
public static HttpListenerResponse GetRole(HttpListenerContext context)
|
|
|
|
|
{
|
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithJson(UserRole.Admin);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
}
|
2023-03-31 08:21:32 -07:00
|
|
|
|
|
|
|
|
|
[RouteGroup("Stream")]
|
|
|
|
|
[RouteRequest(typeof(MemoryStream))]
|
|
|
|
|
public static HttpListenerResponse Upload(HttpListenerContext context)
|
|
|
|
|
{
|
|
|
|
|
var content = context.Request.ReadAsString();
|
|
|
|
|
|
|
|
|
|
Console.WriteLine("Uploaded:" + content);
|
|
|
|
|
|
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[RouteGroup("Stream")]
|
|
|
|
|
[RouteResponse(typeof(MemoryStream))]
|
|
|
|
|
public static HttpListenerResponse Download(HttpListenerContext context)
|
|
|
|
|
{
|
|
|
|
|
return context.Response.WithStatus(HttpStatusCode.OK).WithText("Hello world");
|
|
|
|
|
}
|
2022-02-06 19:22:24 -08:00
|
|
|
|
}
|
|
|
|
|
}
|