config.rs 669 B

12345678910111213141516171819202122232425262728293031323334
  1. use serde::Deserialize;
  2. use crate::ext::{GithubConfig, OIDCConfig};
  3. fn default_auth_token_expiry() -> u64 {
  4. 600
  5. }
  6. fn default_auth_code_expiry() -> u64 {
  7. 600
  8. }
  9. fn default_refresh_token_expiry() -> u64 {
  10. 3600
  11. }
  12. #[derive(Debug, Clone, Deserialize)]
  13. pub struct Config {
  14. pub db_path: String,
  15. pub base_url: String,
  16. #[serde(default = "default_auth_token_expiry")]
  17. pub auth_token_expiry: u64,
  18. #[serde(default = "default_auth_code_expiry")]
  19. pub auth_code_expiry: u64,
  20. #[serde(default = "default_refresh_token_expiry")]
  21. pub refresh_token_expiry: u64,
  22. pub github: Option<GithubConfig>,
  23. pub oidc: Option<OIDCConfig>,
  24. }