This actually doesn't seem too difficult. Consider implementing the FromRequest trait for our auth method so we don't have to call a specific method all the time to get the auth object.
https://actix.rs/actix-web/actix_web/trait.FromRequest.html
Concerning code is here:
https://github.com/fairingrey/actix-realworld-example-app/blob/master/src/utils/auth.rs
Thanks to @colelawrence for letting me know of the idea!