hessra-macros 0.1.0

Hessra authorization service macros for Rust
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
extern crate proc_macro;

use proc_macro::TokenStream;
use quote::quote;
use syn::{
    parse::Parse, parse::ParseStream, parse_macro_input, FnArg, Ident, ItemFn, LitStr, Pat,
    PatIdent, Token,
};

struct MacroArgs {
    resource: LitStr,
    config_param: Option<Ident>,
}

impl Parse for MacroArgs {
    fn parse(input: ParseStream) -> syn::Result<Self> {
        let resource = input.parse::<LitStr>()?;

        let config_param = if input.peek(Token![,]) {
            input.parse::<Token![,]>()?;
            Some(input.parse::<Ident>()?)
        } else {
            None
        };

        Ok(MacroArgs {
            resource,
            config_param,
        })
    }
}

/// Macro to wrap a function with authorization token request logic
///
/// This macro will request an authorization token for a given resource
/// before executing the wrapped function. It supports both synchronous
/// and asynchronous functions.
///
/// # Example
///
/// ```
/// use hessra_macros::request_authorization;
///
/// // With client config parameter
/// #[request_authorization("my-resource", client_config)]
/// async fn protected_function(client_config: HessraConfig) {
///     // This function will be called after token is obtained
/// }
///
/// // Using global configuration
/// #[request_authorization("my-resource")]
/// async fn simple_protected_function() {
///     // This function will be called after token is obtained using global config
/// }
///
/// // With individual connection parameters
/// #[request_authorization("my-resource")]
/// async fn custom_protected_function(base_url: String, mtls_cert: String, mtls_key: String, server_ca: String) {
///     // This function will be called after token is obtained using provided parameters
/// }
/// ```
#[proc_macro_attribute]
pub fn request_authorization(attr: TokenStream, item: TokenStream) -> TokenStream {
    let args = parse_macro_input!(attr as MacroArgs);
    let input = parse_macro_input!(item as ItemFn);

    let fn_name = &input.sig.ident;
    let fn_args = &input.sig.inputs;
    let fn_generics = &input.sig.generics;
    let fn_output = &input.sig.output;
    let fn_body = &input.block;
    let fn_vis = &input.vis;

    let is_async = input.sig.asyncness.is_some();
    let resource = &args.resource;

    // Check if the function has parameters needed for client config
    let has_config_param = args.config_param.is_some();
    let config_param = args.config_param;

    // Check if any of the function parameters can be used for client config
    let has_base_url_param = fn_args.iter().any(|arg| {
        if let FnArg::Typed(pat_type) = arg {
            if let Pat::Ident(PatIdent { ident, .. }) = &*pat_type.pat {
                return ident == "base_url";
            }
        }
        false
    });

    // Create parameter list for the forwarding call
    let _args: Vec<_> = fn_args
        .iter()
        .filter_map(|arg| {
            if let FnArg::Typed(pat_type) = arg {
                if let Pat::Ident(PatIdent { ident, .. }) = &*pat_type.pat {
                    return Some(ident);
                }
            }
            None
        })
        .collect();

    let expanded = if is_async {
        if has_config_param {
            // Use the provided client config parameter - now using cloned ownership
            quote! {
                #fn_vis #fn_generics async fn #fn_name(#fn_args) #fn_output {
                    // Create client from the provided configuration (clone to avoid borrowing issues)
                    let config_clone = #config_param.clone();
                    let client = config_clone.create_client()
                        .expect("Failed to create Hessra client from configuration");

                    // Request a token for the resource
                    let resource = #resource.to_string();
                    let token = client.request_token(resource)
                        .await
                        .expect("Failed to request authorization token");

                    // Call the original function
                    #fn_body
                }
            }
        } else if has_base_url_param {
            // Create a new client from function parameters - using owned values
            quote! {
                #fn_vis #fn_generics async fn #fn_name(#fn_args) #fn_output {
                    // Create a temporary configuration from parameters
                    let config = hessra_sdk::HessraConfig::new(
                        base_url.clone(),
                        None, // default port
                        hessra_sdk::Protocol::Http1,
                        mtls_cert.clone(),
                        mtls_key.clone(),
                        server_ca.clone()
                    );

                    // Create client from the config
                    let client = config.create_client()
                        .expect("Failed to create Hessra client from parameters");

                    // Request a token for the resource
                    let resource = #resource.to_string();
                    let token = client.request_token(resource)
                        .await
                        .expect("Failed to request authorization token");

                    // Call the original function
                    #fn_body
                }
            }
        } else {
            // Use global configuration
            quote! {
                #fn_vis #fn_generics async fn #fn_name(#fn_args) #fn_output {
                    // Get the global configuration (clone to avoid reference issues)
                    let config = hessra_sdk::get_default_config()
                        .cloned()
                        .or_else(|| hessra_sdk::try_load_default_config())
                        .expect("No Hessra configuration found. Set a default configuration or provide parameters.");

                    // Create client from the config
                    let client = config.create_client()
                        .expect("Failed to create Hessra client from global configuration");

                    // Request a token for the resource
                    let resource = #resource.to_string();
                    let token = client.request_token(resource)
                        .await
                        .expect("Failed to request authorization token");

                    // Call the original function
                    #fn_body
                }
            }
        }
    } else {
        // For synchronous functions
        if has_config_param {
            quote! {
                #fn_vis #fn_generics fn #fn_name(#fn_args) #fn_output {
                    // Create a runtime for the asynchronous token request
                    let rt = tokio::runtime::Runtime::new().expect("Failed to create runtime");

                    // Create client from the provided configuration (clone to avoid borrowing issues)
                    let config_clone = #config_param.clone();
                    let client = config_clone.create_client()
                        .expect("Failed to create Hessra client from configuration");

                    // Request a token for the resource
                    let resource = #resource.to_string();
                    let token = rt.block_on(client.request_token(resource))
                        .expect("Failed to request authorization token");

                    // Call the original function
                    #fn_body
                }
            }
        } else if has_base_url_param {
            quote! {
                #fn_vis #fn_generics fn #fn_name(#fn_args) #fn_output {
                    // Create a runtime for the asynchronous token request
                    let rt = tokio::runtime::Runtime::new().expect("Failed to create runtime");

                    // Create a temporary configuration from parameters
                    let config = hessra_sdk::HessraConfig::new(
                        base_url.clone(),
                        None, // default port
                        hessra_sdk::Protocol::Http1,
                        mtls_cert.clone(),
                        mtls_key.clone(),
                        server_ca.clone()
                    );

                    // Create client from the config
                    let client = config.create_client()
                        .expect("Failed to create Hessra client from parameters");

                    // Request a token for the resource
                    let resource = #resource.to_string();
                    let token = rt.block_on(client.request_token(resource))
                        .expect("Failed to request authorization token");

                    // Call the original function
                    #fn_body
                }
            }
        } else {
            // Use global configuration
            quote! {
                #fn_vis #fn_generics fn #fn_name(#fn_args) #fn_output {
                    // Create a runtime for the asynchronous token request
                    let rt = tokio::runtime::Runtime::new().expect("Failed to create runtime");

                    // Get the global configuration (clone to avoid reference issues)
                    let config = hessra_sdk::get_default_config()
                        .cloned()
                        .or_else(|| hessra_sdk::try_load_default_config())
                        .expect("No Hessra configuration found. Set a default configuration or provide parameters.");

                    // Create client from the config
                    let client = config.create_client()
                        .expect("Failed to create Hessra client from global configuration");

                    // Request a token for the resource
                    let resource = #resource.to_string();
                    let token = rt.block_on(client.request_token(resource))
                        .expect("Failed to request authorization token");

                    // Call the original function
                    #fn_body
                }
            }
        }
    };

    TokenStream::from(expanded)
}

/// Macro to wrap a function with authorization verification logic
///
/// This macro will verify an authorization token for a given resource
/// before executing the wrapped function. It supports both synchronous
/// and asynchronous functions.
///
/// # Example
///
/// ```
/// use hessra_macros::authorize;
///
/// // With client config parameter
/// #[authorize("my-resource", client_config)]
/// async fn protected_function(token: String, client_config: HessraConfig) {
///     // This function will be called if token is valid
/// }
///
/// // Using global configuration
/// #[authorize("my-resource")]
/// async fn simple_protected_function(token: String) {
///     // This function will be called if token is valid using global config
/// }
///
/// // With individual connection parameters
/// #[authorize("my-resource")]
/// async fn custom_protected_function(token: String, base_url: String, mtls_cert: String, mtls_key: String, server_ca: String) {
///     // This function will be called if token is valid using provided parameters
/// }
/// ```
#[proc_macro_attribute]
pub fn authorize(attr: TokenStream, item: TokenStream) -> TokenStream {
    let args = parse_macro_input!(attr as MacroArgs);
    let input = parse_macro_input!(item as ItemFn);

    let fn_name = &input.sig.ident;
    let fn_args = &input.sig.inputs;
    let fn_generics = &input.sig.generics;
    let fn_output = &input.sig.output;
    let fn_body = &input.block;
    let fn_vis = &input.vis;

    let is_async = input.sig.asyncness.is_some();
    let resource = &args.resource;

    // Check if the function has a dedicated client config parameter
    let has_config_param = args.config_param.is_some();
    let config_param = args.config_param;

    // Check if any of the function parameters can be used for client config
    let has_base_url_param = fn_args.iter().any(|arg| {
        if let FnArg::Typed(pat_type) = arg {
            if let Pat::Ident(PatIdent { ident, .. }) = &*pat_type.pat {
                return ident == "base_url";
            }
        }
        false
    });

    // Find the token parameter
    let token_param = fn_args.iter().find_map(|arg| {
        if let FnArg::Typed(pat_type) = arg {
            if let Pat::Ident(PatIdent { ident, .. }) = &*pat_type.pat {
                if ident == "token" {
                    return Some(ident);
                }
            }
        }
        None
    });

    let token_ident = match token_param {
        Some(ident) => ident,
        None => {
            return syn::Error::new_spanned(
                &input.sig,
                "The function must have a 'token' parameter to use the authorize macro",
            )
            .to_compile_error()
            .into();
        }
    };

    let expanded = if is_async {
        if has_config_param {
            quote! {
                #fn_vis #fn_generics async fn #fn_name(#fn_args) #fn_output {
                    // Create client from the provided configuration (clone to avoid borrowing issues)
                    let config_clone = #config_param.clone();
                    let client = config_clone.create_client()
                        .expect("Failed to create Hessra client from configuration");

                    // Verify the token for the specified resource
                    let resource = #resource.to_string();
                    let verification_result = client.verify_token(#token_ident.clone(), resource).await;

                    match verification_result {
                        Ok(_) => {
                            // Token is valid, proceed with the function
                            #fn_body
                        },
                        Err(e) => {
                            // Token is invalid, return an error
                            panic!("Authorization failed: {}", e);
                        }
                    }
                }
            }
        } else if has_base_url_param {
            quote! {
                #fn_vis #fn_generics async fn #fn_name(#fn_args) #fn_output {
                    // Create a temporary configuration from parameters
                    let config = hessra_sdk::HessraConfig::new(
                        base_url.clone(),
                        None, // default port
                        hessra_sdk::Protocol::Http1,
                        mtls_cert.clone(),
                        mtls_key.clone(),
                        server_ca.clone()
                    );

                    // Create client from the config
                    let client = config.create_client()
                        .expect("Failed to create Hessra client from parameters");

                    // Verify the token for the specified resource
                    let resource = #resource.to_string();
                    let verification_result = client.verify_token(#token_ident.clone(), resource).await;

                    match verification_result {
                        Ok(_) => {
                            // Token is valid, proceed with the function
                            #fn_body
                        },
                        Err(e) => {
                            // Token is invalid, return an error
                            panic!("Authorization failed: {}", e);
                        }
                    }
                }
            }
        } else {
            // Use global configuration
            quote! {
                #fn_vis #fn_generics async fn #fn_name(#fn_args) #fn_output {
                    // Get the global configuration (clone to avoid reference issues)
                    let config = hessra_sdk::get_default_config()
                        .cloned()
                        .or_else(|| hessra_sdk::try_load_default_config())
                        .expect("No Hessra configuration found. Set a default configuration or provide parameters.");

                    // Create client from the config
                    let client = config.create_client()
                        .expect("Failed to create Hessra client from global configuration");

                    // Verify the token for the specified resource
                    let resource = #resource.to_string();
                    let verification_result = client.verify_token(#token_ident.clone(), resource).await;

                    match verification_result {
                        Ok(_) => {
                            // Token is valid, proceed with the function
                            #fn_body
                        },
                        Err(e) => {
                            // Token is invalid, return an error
                            panic!("Authorization failed: {}", e);
                        }
                    }
                }
            }
        }
    } else {
        // For synchronous functions
        if has_config_param {
            quote! {
                #fn_vis #fn_generics fn #fn_name(#fn_args) #fn_output {
                    // Create a runtime for the asynchronous token verification
                    let rt = tokio::runtime::Runtime::new().expect("Failed to create runtime");

                    // Create client from the provided configuration (clone to avoid borrowing issues)
                    let config_clone = #config_param.clone();
                    let client = config_clone.create_client()
                        .expect("Failed to create Hessra client from configuration");

                    // Verify the token for the specified resource
                    let resource = #resource.to_string();
                    let verification_result = rt.block_on(client.verify_token(#token_ident.clone(), resource));

                    match verification_result {
                        Ok(_) => {
                            // Token is valid, proceed with the function
                            #fn_body
                        },
                        Err(e) => {
                            // Token is invalid, return an error
                            panic!("Authorization failed: {}", e);
                        }
                    }
                }
            }
        } else if has_base_url_param {
            quote! {
                #fn_vis #fn_generics fn #fn_name(#fn_args) #fn_output {
                    // Create a runtime for the asynchronous token verification
                    let rt = tokio::runtime::Runtime::new().expect("Failed to create runtime");

                    // Create a temporary configuration from parameters
                    let config = hessra_sdk::HessraConfig::new(
                        base_url.clone(),
                        None, // default port
                        hessra_sdk::Protocol::Http1,
                        mtls_cert.clone(),
                        mtls_key.clone(),
                        server_ca.clone()
                    );

                    // Create client from the config
                    let client = config.create_client()
                        .expect("Failed to create Hessra client from parameters");

                    // Verify the token for the specified resource
                    let resource = #resource.to_string();
                    let verification_result = rt.block_on(client.verify_token(#token_ident.clone(), resource));

                    match verification_result {
                        Ok(_) => {
                            // Token is valid, proceed with the function
                            #fn_body
                        },
                        Err(e) => {
                            // Token is invalid, return an error
                            panic!("Authorization failed: {}", e);
                        }
                    }
                }
            }
        } else {
            // Use global configuration
            quote! {
                #fn_vis #fn_generics fn #fn_name(#fn_args) #fn_output {
                    // Create a runtime for the asynchronous token verification
                    let rt = tokio::runtime::Runtime::new().expect("Failed to create runtime");

                    // Get the global configuration (clone to avoid reference issues)
                    let config = hessra_sdk::get_default_config()
                        .cloned()
                        .or_else(|| hessra_sdk::try_load_default_config())
                        .expect("No Hessra configuration found. Set a default configuration or provide parameters.");

                    // Create client from the config
                    let client = config.create_client()
                        .expect("Failed to create Hessra client from global configuration");

                    // Verify the token for the specified resource
                    let resource = #resource.to_string();
                    let verification_result = rt.block_on(client.verify_token(#token_ident.clone(), resource));

                    match verification_result {
                        Ok(_) => {
                            // Token is valid, proceed with the function
                            #fn_body
                        },
                        Err(e) => {
                            // Token is invalid, return an error
                            panic!("Authorization failed: {}", e);
                        }
                    }
                }
            }
        }
    };

    TokenStream::from(expanded)
}