graphul 1.0.1

Optimize, speed, scale your microservices and save money 💵
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
//pub mod types;

//use types::*;

mod app;
mod color;
mod fs;
pub mod http;
mod listen;
pub mod middleware;
pub mod template;

use std::convert::Infallible;
use std::io;
use std::net::SocketAddr;

pub use async_trait::async_trait;

pub use axum::extract;
use axum::handler::Handler;
pub use axum::response::IntoResponse;
use axum::routing::{delete, get, get_service, head, options, patch, post, put, trace, Route};
use axum::Router;

pub use http::request::Context;
pub use http::request::ContextPart;
use http::resource::Resource;
use http::StatusCode;
use hyper::service::Service;
use hyper::Request;
use tower_http::services::{ServeDir, ServeFile};
use tower_http::set_status::SetStatus;
use tower_layer::Layer;

use tower::ServiceExt;

pub type FolderConfig = fs::FolderConfig;
pub type FileConfig = fs::FileConfig;

pub type Body = axum::body::Body;

pub type Req = axum::http::Request<Body>;

pub struct Group<'a, S = ()> {
    app: &'a mut Graphul<S>,
    prefix: String,
}

impl<'a, S> Group<'a, S>
where
    S: Clone + Send + Sync + 'static,
{
    pub fn resource(&mut self, path: &str, res: impl Resource<S> + 'static) {
        let route_name = self.get_route_name(path);
        self.app.resource(route_name.as_str(), res);
    }
}

impl<'a, S> http::Methods<S, Body> for Group<'a, S>
where
    S: Clone + Send + Sync + 'static,
{
    fn post<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        let route_name = self.get_route_name(path);
        self.app.post(route_name.as_str(), handler);
    }

    fn get<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        let route_name = self.get_route_name(path);
        self.app.get(route_name.as_str(), handler);
    }
    fn put<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        let route_name = self.get_route_name(path);
        self.app.put(route_name.as_str(), handler);
    }

    fn delete<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        let route_name = self.get_route_name(path);
        self.app.delete(route_name.as_str(), handler);
    }
    fn head<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        let route_name = self.get_route_name(path);
        self.app.head(route_name.as_str(), handler);
    }

    fn options<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        let route_name = self.get_route_name(path);
        self.app.options(route_name.as_str(), handler);
    }
    fn patch<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        let route_name = self.get_route_name(path);
        self.app.patch(route_name.as_str(), handler);
    }

    fn trace<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        let route_name = self.get_route_name(path);
        self.app.trace(route_name.as_str(), handler);
    }
}

impl<'a, S> Group<'a, S>
where
    S: Clone + Send + Sync + 'static,
{
    fn new(app: &'a mut Graphul<S>, prefix: &str) -> Self {
        Group {
            app,
            prefix: prefix.to_string(),
        }
    }

    fn get_route_name(&self, name: &str) -> String {
        if name == "/" {
            return self.prefix.clone();
        }
        format!("{}{}", self.prefix, name)
    }

    pub fn group(&mut self, name: &str) -> Group<S> {
        self.app
            .group(format!("/{}/{}", self.prefix, name).as_str())
    }
}

#[derive(Debug)]
pub struct Graphul<S = ()> {
    routes: Router<S, Body>,
    count_routes: usize,
    route_list: Vec<String>,
    state: S,
}

impl<S> Graphul<S>
where
    S: Clone + Send + Sync + 'static,
{
    pub fn resource<T: Resource<S> + 'static>(&mut self, path: &str, _res: T) {
        // get
        self.increase_route_counter(path.into());
        self.routes = self.routes.clone().route(path, get(T::get));

        // post
        self.increase_route_counter(path.into());
        self.routes = self.routes.clone().route(path, post(T::post));

        // put
        self.increase_route_counter(path.into());
        self.routes = self.routes.clone().route(path, put(T::put));

        // delete
        self.increase_route_counter(path.into());
        self.routes = self.routes.clone().route(path, delete(T::delete));

        // patch
        self.increase_route_counter(path.into());
        self.routes = self.routes.clone().route(path, patch(T::patch));

        // options
        self.increase_route_counter(path.into());
        self.routes = self.routes.clone().route(path, options(T::options));

        // trace
        self.increase_route_counter(path.into());
        self.routes = self.routes.clone().route(path, trace(T::trace));

        // head
        self.increase_route_counter(path.into());
        self.routes = self.routes.clone().route(path, head(T::head));
    }
}

impl<S> http::Methods<S, Body> for Graphul<S>
where
    S: Clone + Send + Sync + 'static,
{
    fn get<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        self.increase_route_counter(format!("GET {path}"));
        self.routes = self.routes.clone().route(path, get(handler));
    }
    fn post<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        self.increase_route_counter(format!("POST {path}"));
        self.routes = self.routes.clone().route(path, post(handler));
    }
    fn put<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        self.increase_route_counter(format!("PUT {path}"));
        self.routes = self.routes.clone().route(path, put(handler));
    }
    fn delete<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        self.increase_route_counter(format!("DELETE {path}"));
        self.routes = self.routes.clone().route(path, delete(handler));
    }
    fn head<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        self.increase_route_counter(format!("HEAD {path}"));
        self.routes = self.routes.clone().route(path, head(handler));
    }
    fn options<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        self.increase_route_counter(format!("OPTIONS {path}"));
        self.routes = self.routes.clone().route(path, options(handler));
    }
    fn patch<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        self.increase_route_counter(format!("PATCH {path}"));
        self.routes = self.routes.clone().route(path, patch(handler));
    }
    fn trace<T, H>(&mut self, path: &str, handler: H)
    where
        H: Handler<T, S>,
        T: 'static,
    {
        self.increase_route_counter(format!("TRACE {path}"));
        self.routes = self.routes.clone().route(path, trace(handler));
    }
}

impl Graphul<()> {
    pub fn new() -> Self {
        Self {
            routes: Router::new(),
            count_routes: 0,
            route_list: vec![],
            state: (),
        }
    }

    // new alias to create sub-routes
    pub fn router() -> Self {
        Self {
            routes: Router::new(),
            count_routes: 0,
            route_list: vec![],
            state: (),
        }
    }

    // Graphul::get("/", || async {});
    // let

    pub fn get<T, H>(path: &str, handler: H) -> Graphul
    where
        H: Handler<T, ()>,
        T: 'static,
    {
        use http::Methods;

        let mut app = Graphul::new();
        app.get(path, handler);
        app
    }

    // Get with state
    // Graphul::Get(my_state, "/", || async {});
    pub fn state_get<T, H, S>(state: S, path: &str, handler: H) -> Graphul<S>
    where
        H: Handler<T, S>,
        T: 'static,
        S: Clone + Send + Sync + 'static,
    {
        use http::Methods;

        let mut app: Graphul<S> = Graphul::share_state(state);
        app.get(path, handler);
        app
    }

    // Post without state
    // Graphul::post("/", || async {});
    pub fn post<T, H>(path: &str, handler: H) -> Graphul
    where
        H: Handler<T, ()>,
        T: 'static,
    {
        use http::Methods;

        let mut app = Graphul::new();
        app.post(path, handler);
        app
    }

    // Post with state
    // Graphul::Post(my_state, "/", || async {});
    pub fn state_post<T, H, S>(state: S, path: &str, handler: H) -> Graphul<S>
    where
        H: Handler<T, S>,
        T: 'static,
        S: Clone + Send + Sync + 'static,
    {
        use http::Methods;

        let mut app: Graphul<S> = Graphul::share_state(state);
        app.post(path, handler);
        app
    }

    // Put without state
    // Graphul::put("/", || async {});
    pub fn put<T, H>(path: &str, handler: H) -> Graphul
    where
        H: Handler<T, ()>,
        T: 'static,
    {
        use http::Methods;

        let mut app = Graphul::new();
        app.put(path, handler);
        app
    }

    // Put with state
    // Graphul::Put(my_state, "/", || async {});
    pub fn state_put<T, H, S>(state: S, path: &str, handler: H) -> Graphul<S>
    where
        H: Handler<T, S>,
        T: 'static,
        S: Clone + Send + Sync + 'static,
    {
        use http::Methods;

        let mut app: Graphul<S> = Graphul::share_state(state);
        app.put(path, handler);
        app
    }

    // Delete without state
    // Graphul::delete("/", || async {});
    pub fn delete<T, H>(path: &str, handler: H) -> Graphul
    where
        H: Handler<T, ()>,
        T: 'static,
    {
        use http::Methods;

        let mut app = Graphul::new();
        app.delete(path, handler);
        app
    }

    // Delete with state
    // Graphul::Delete(my_state, "/", || async {});
    pub fn state_delete<T, H, S>(state: S, path: &str, handler: H) -> Graphul<S>
    where
        H: Handler<T, S>,
        T: 'static,
        S: Clone + Send + Sync + 'static,
    {
        use http::Methods;

        let mut app: Graphul<S> = Graphul::share_state(state);
        app.delete(path, handler);
        app
    }

    // Patch without state
    // Graphul::patch("/", || async {});
    pub fn patch<T, H>(path: &str, handler: H) -> Graphul
    where
        H: Handler<T, ()>,
        T: 'static,
    {
        use http::Methods;

        let mut app = Graphul::new();
        app.patch(path, handler);
        app
    }

    // Patch with state
    // Graphul::Patch(my_state, "/", || async {});
    pub fn state_patch<T, H, S>(state: S, path: &str, handler: H) -> Graphul<S>
    where
        H: Handler<T, S>,
        T: 'static,
        S: Clone + Send + Sync + 'static,
    {
        use http::Methods;

        let mut app: Graphul<S> = Graphul::share_state(state);
        app.patch(path, handler);
        app
    }

    // Options without state
    // Graphul::options("/", || async {});
    pub fn options<T, H>(path: &str, handler: H) -> Graphul
    where
        H: Handler<T, ()>,
        T: 'static,
    {
        use http::Methods;

        let mut app = Graphul::new();
        app.options(path, handler);
        app
    }

    // Options with state
    // Graphul::Options(my_state, "/", || async {});
    pub fn state_options<T, H, S>(state: S, path: &str, handler: H) -> Graphul<S>
    where
        H: Handler<T, S>,
        T: 'static,
        S: Clone + Send + Sync + 'static,
    {
        use http::Methods;

        let mut app: Graphul<S> = Graphul::share_state(state);
        app.options(path, handler);
        app
    }

    // Trace without state
    // Graphul::trace("/", || async {});
    pub fn trace<T, H>(path: &str, handler: H) -> Graphul
    where
        H: Handler<T, ()>,
        T: 'static,
    {
        use http::Methods;

        let mut app = Graphul::new();
        app.trace(path, handler);
        app
    }

    // Trace with state
    // Graphul::Trace(my_state, "/", || async {});
    pub fn state_trace<T, H, S>(state: S, path: &str, handler: H) -> Graphul<S>
    where
        H: Handler<T, S>,
        T: 'static,
        S: Clone + Send + Sync + 'static,
    {
        use http::Methods;

        let mut app: Graphul<S> = Graphul::share_state(state);
        app.trace(path, handler);
        app
    }

    // Head without state
    // Graphul::head("/", || async {});
    pub fn head<T, H>(path: &str, handler: H) -> Graphul
    where
        H: Handler<T, ()>,
        T: 'static,
    {
        use http::Methods;

        let mut app = Graphul::new();
        app.head(path, handler);
        app
    }

    // Head with state
    // Graphul::Head(my_state, "/", || async {});
    pub fn state_head<T, H, S>(state: S, path: &str, handler: H) -> Graphul<S>
    where
        H: Handler<T, S>,
        T: 'static,
        S: Clone + Send + Sync + 'static,
    {
        use http::Methods;

        let mut app: Graphul<S> = Graphul::share_state(state);
        app.head(path, handler);
        app
    }
}

impl Default for Graphul<()> {
    fn default() -> Self {
        Self::new()
    }
}

impl<S> Graphul<S>
where
    S: Clone + Send + Sync + 'static,
{
    pub fn share_state(state: S) -> Self {
        Self {
            routes: Router::new(),
            count_routes: 0,
            route_list: vec![],
            state,
        }
    }

    pub fn routes(&self) -> Vec<String> {
        self.route_list.clone()
    }

    fn increase_route_counter(&mut self, path: String) {
        self.count_routes += 1;
        self.route_list.push(path);
    }

    fn add_route_to_list(&mut self, paths: Vec<String>) {
        for path in paths {
            self.increase_route_counter(path)
        }
    }

    pub fn merge<R>(&mut self, route: R)
    where
        R: Into<Router<S, Body>>,
    {
        self.routes = self.routes.clone().merge(route);
    }

    pub fn add_router(&mut self, route: Graphul<S>) {
        self.merge(route.routes);
        self.add_route_to_list(route.route_list);
    }

    pub fn add_routers(&mut self, routes: Vec<Graphul<S>>) {
        for route in routes {
            self.merge(route.routes);
            self.add_route_to_list(route.route_list);
        }
    }

    pub fn set_server_file_config(
        &self,
        file_dir: String,
        compress: bool,
        chunk_size: Option<usize>,
    ) -> ServeFile {
        let mut serve_file = ServeFile::new(file_dir);
        if compress {
            serve_file = serve_file
                .precompressed_gzip()
                .precompressed_deflate()
                .precompressed_br()
        }
        if let Some(chunk_size) = chunk_size {
            serve_file = serve_file.with_buf_chunk_size(chunk_size)
        }
        serve_file
    }

    pub fn static_files(&mut self, path: &'static str, dir: &'static str, config: FolderConfig) {
        let mut serve_dir: ServeDir<SetStatus<ServeFile>>;
        if config.spa {
            serve_dir = ServeDir::new(dir)
                .append_index_html_on_directories(config.index)
                .fallback(SetStatus::new(
                    self.set_server_file_config(
                        format!("{dir}/index.html"),
                        config.compress,
                        config.chunk_size,
                    ),
                    StatusCode::OK,
                ));
        } else {
            let mut not_found = "";
            if let Some(not_f) = config.not_found {
                not_found = not_f;
            }
            serve_dir = ServeDir::new(dir)
                .append_index_html_on_directories(config.index)
                .fallback(SetStatus::new(
                    self.set_server_file_config(
                        not_found.to_string(),
                        config.compress,
                        config.chunk_size,
                    ),
                    StatusCode::NOT_FOUND,
                ));
        }
        if config.compress {
            serve_dir = serve_dir
                .precompressed_gzip()
                .precompressed_deflate()
                .precompressed_br()
        }
        if let Some(chunk_size) = config.chunk_size {
            serve_dir = serve_dir.with_buf_chunk_size(chunk_size)
        }
        let serve_dir = get_service(serve_dir).handle_error(Graphul::<S>::handle_error);
        self.routes = self.routes.clone().nest_service(path, serve_dir);
    }

    pub fn static_file(&mut self, path: &'static str, file: &'static str, config: FileConfig) {
        let serve_dir =
            self.set_server_file_config(file.to_string(), config.compress, config.chunk_size);
        self.routes = self.routes.clone().route(
            path,
            get(move |request: Request<Body>| async move {
                let serve_dir = get_service(serve_dir).handle_error(Graphul::<S>::handle_error);
                serve_dir.oneshot(request).await
            }),
        );
    }

    async fn handle_error(_err: io::Error) -> impl IntoResponse {
        (StatusCode::INTERNAL_SERVER_ERROR, "Something went wrong...")
    }

    pub fn middleware<L>(&mut self, service: L)
    where
        L: Layer<Route<Body>> + Clone + Send + 'static,
        L::Service: Service<Request<Body>> + Clone + Send + 'static,
        <L::Service as Service<Request<Body>>>::Response: IntoResponse + 'static,
        <L::Service as Service<Request<Body>>>::Error: Into<Infallible> + 'static,
        <L::Service as Service<Request<Body>>>::Future: Send + 'static,
    {
        self.routes = self.routes.clone().route_layer(service);
    }

    pub fn group(&mut self, name: &str) -> Group<S> {
        Group::new(self, format!("/{name}").as_str())
    }

    async fn fallback(req: Req) -> (StatusCode, String) {
        (
            StatusCode::NOT_FOUND,
            format!("Cannot {} {}", req.method().as_str(), req.uri()),
        )
    }

    pub fn export_routes(self) -> Router {
        self.routes
            .with_state(self.state)
            .fallback(Graphul::<S>::fallback)
    }

    pub async fn run(self, addr: &str) {
        let addr: SocketAddr = addr.parse().unwrap();

        listen::startup_message(&addr, false, self.count_routes);

        axum::Server::bind(&addr)
            .serve(
                self.routes
                    .with_state(self.state)
                    .fallback(Graphul::<S>::fallback)
                    .into_make_service_with_connect_info::<SocketAddr>(),
            )
            .await
            .unwrap();
    }
}