2020-05-26 15:51:11 +00:00
|
|
|
//! Project constants
|
|
|
|
//!
|
|
|
|
//! This module contains all the hard-coded value that might be used everywhere in the project.
|
|
|
|
//!
|
|
|
|
//! @author Pierre Hubert
|
|
|
|
|
2021-02-05 13:49:45 +00:00
|
|
|
use std::time::Duration;
|
|
|
|
|
2020-05-26 15:51:11 +00:00
|
|
|
/// The name of the tables
|
|
|
|
pub mod database_tables_names {
|
|
|
|
/// API services tokens table
|
2021-02-13 13:37:15 +00:00
|
|
|
pub const CLIENTS_TABLE: &str = "comunic_clients";
|
2020-05-26 15:51:11 +00:00
|
|
|
|
|
|
|
/// User access tokens table
|
2021-02-13 13:37:15 +00:00
|
|
|
pub const USER_ACCESS_TOKENS_TABLE: &str = "comunic_user_access_tokens";
|
2020-05-26 15:51:11 +00:00
|
|
|
|
|
|
|
/// User table
|
|
|
|
pub const USERS_TABLE: &str = "utilisateurs";
|
2020-05-26 16:25:33 +00:00
|
|
|
|
|
|
|
/// Friends table
|
|
|
|
pub const FRIENDS_TABLE: &str = "amis";
|
2020-05-26 17:45:38 +00:00
|
|
|
|
|
|
|
/// Custom emojis table
|
|
|
|
pub const EMOJIS_TABLE: &str = "comunic_custom_emojis";
|
2020-06-01 08:17:32 +00:00
|
|
|
|
|
|
|
/// Likes table
|
|
|
|
pub const LIKES_TABLE: &str = "aime";
|
2020-06-03 11:28:28 +00:00
|
|
|
|
|
|
|
/// Groups list table
|
|
|
|
pub const GROUPS_LIST_TABLE: &str = "comunic_groups";
|
2020-06-04 11:36:57 +00:00
|
|
|
|
2020-06-24 07:08:31 +00:00
|
|
|
/// Groups members table
|
|
|
|
pub const GROUPS_MEMBERS_TABLE: &str = "comunic_groups_members";
|
|
|
|
|
2020-06-04 11:36:57 +00:00
|
|
|
/// Conversations tables
|
|
|
|
pub const CONV_LIST_TABLE: &str = "comunic_conversations_list";
|
2021-03-02 16:32:24 +00:00
|
|
|
pub const CONV_MEMBERS_TABLE: &str = "comunic_conversations_members";
|
2020-06-04 11:36:57 +00:00
|
|
|
pub const CONV_MESSAGES_TABLE: &str = "comunic_conversations_messages";
|
2020-07-02 16:19:04 +00:00
|
|
|
|
|
|
|
/// Posts table
|
|
|
|
pub const POSTS_TABLE: &str = "texte";
|
2020-07-03 14:41:14 +00:00
|
|
|
|
|
|
|
/// Movies table
|
|
|
|
pub const MOVIES_TABLE: &str = "galerie_video";
|
2020-07-04 14:44:42 +00:00
|
|
|
|
|
|
|
/// Survey info table
|
|
|
|
pub const SURVEY_INFO_TABLE: &str = "sondage";
|
|
|
|
|
|
|
|
/// Survey choices table
|
|
|
|
pub const SURVEY_CHOICES_TABLE: &str = "sondage_choix";
|
|
|
|
|
|
|
|
/// Survey responses table
|
|
|
|
pub const SURVEY_RESPONSE_TABLE: &str = "sondage_reponse";
|
2020-07-05 17:32:28 +00:00
|
|
|
|
|
|
|
/// Comments table
|
|
|
|
pub const COMMENTS_TABLE: &str = "commentaires";
|
2020-07-10 10:55:50 +00:00
|
|
|
|
|
|
|
/// Notifications table
|
|
|
|
pub const NOTIFICATIONS_TABLE: &str = "comunic_notifications";
|
2020-05-26 16:02:14 +00:00
|
|
|
}
|
|
|
|
|
2021-02-17 15:32:49 +00:00
|
|
|
/// Password policy
|
|
|
|
pub mod password_policy {
|
|
|
|
/// Allow email in password ?
|
|
|
|
pub const ALLOW_EMAIL_IN_PASSWORD: bool = false;
|
|
|
|
|
|
|
|
/// Allow user name in password ?
|
|
|
|
pub const ALLOW_NAME_IN_PASSWORD: bool = false;
|
|
|
|
|
|
|
|
/// Minimal length of password
|
|
|
|
pub const MIN_PASSWORD_LENGTH: u64 = 8;
|
|
|
|
|
|
|
|
/// Password composition policy
|
|
|
|
pub const MIN_NUMBER_LOWERCASE_LETTER: u64 = 1;
|
|
|
|
pub const MIN_NUMBER_UPPERCASE_LETTER: u64 = 1;
|
|
|
|
pub const MIN_NUMBER_DIGITS: u64 = 1;
|
|
|
|
pub const MIN_NUMBER_SPECIAL_CHARACTERS: u64 = 1;
|
|
|
|
pub const MIN_CATEGORIES_PRESENCE: u64 = 2;
|
|
|
|
}
|
|
|
|
|
2021-02-15 16:03:25 +00:00
|
|
|
/// Minimal conversation policy
|
|
|
|
pub mod conservation_policy {
|
|
|
|
use std::time::Duration;
|
|
|
|
|
|
|
|
/// Minimum lifetime for inactive account (3 months)
|
|
|
|
pub const MIN_INACTIVE_ACCOUNT_LIFETIME: Duration = Duration::from_secs(60 * 60 * 24 * 30 * 3);
|
|
|
|
|
|
|
|
/// Minimum lifetime for notifications (7 days)
|
|
|
|
pub const MIN_NOTIFICATIONS_LIFETIME: Duration = Duration::from_secs(60 * 60 * 24 * 7);
|
|
|
|
|
|
|
|
/// Minimum lifetime for comments (1 month)
|
|
|
|
pub const MIN_COMMENTS_LIFETIME: Duration = Duration::from_secs(60 * 60 * 24 * 30);
|
|
|
|
|
|
|
|
/// Minimum lifetime for posts (1 month)
|
|
|
|
pub const MIN_POSTS_LIFETIME: Duration = Duration::from_secs(60 * 60 * 24 * 30);
|
|
|
|
|
|
|
|
/// Minimum conversation messages lifetime (15 days)
|
|
|
|
pub const MIN_CONVERSATION_MESSAGES_LIFETIME: Duration = Duration::from_secs(60 * 60 * 24 * 15);
|
|
|
|
|
|
|
|
/// Minimum likes lifetime (1 month)
|
|
|
|
pub const MIN_LIKES_LIFETIME: Duration = Duration::from_secs(60 * 60 * 24 * 30);
|
|
|
|
}
|
|
|
|
|
2021-02-05 09:37:37 +00:00
|
|
|
/// WebSocket access token lifetime, in seconds
|
|
|
|
pub const WS_ACCESS_TOKEN_LIFETIME: u64 = 10;
|
|
|
|
|
|
|
|
/// WebSocket access token length
|
|
|
|
pub const WS_ACCESS_TOKEN_LENGTH: usize = 10;
|
|
|
|
|
2021-01-22 18:39:14 +00:00
|
|
|
/// Lifetime of limit counter (1 hour)
|
|
|
|
pub const LIMIT_COUNTER_LIFETIME: u64 = 60 * 60;
|
|
|
|
|
2020-05-26 16:02:14 +00:00
|
|
|
/// The account image to show for user who do not have any
|
|
|
|
pub const DEFAULT_ACCOUNT_IMAGE: &str = "avatars/0Reverse.png";
|
|
|
|
|
|
|
|
/// The account image to show for users who are not allowed to access other users account images
|
2020-06-20 08:31:58 +00:00
|
|
|
pub const ERROR_ACCOUNT_IMAGE: &str = "avatars/0Red.png";
|
|
|
|
|
2020-06-26 08:53:05 +00:00
|
|
|
/// The path where groups logos should be stored
|
|
|
|
pub const PATH_GROUPS_LOGOS: &str = "groups_logo";
|
|
|
|
|
2020-06-25 06:16:20 +00:00
|
|
|
/// The group logo to use when no custom logo have been uploaded
|
|
|
|
pub const DEFAULT_GROUP_LOGO: &str = "groups_logo/default.png";
|
|
|
|
|
2020-07-08 09:03:17 +00:00
|
|
|
/// The path where image associated with posts should be stored
|
2020-07-08 15:14:55 +00:00
|
|
|
pub const PATH_POST_IMAGES: &str = "imgpost";
|
|
|
|
|
|
|
|
/// The path were PDF included with posts should be stored
|
|
|
|
pub const PATH_POST_PDF: &str = "post_pdf";
|
2020-07-08 09:03:17 +00:00
|
|
|
|
2020-07-10 06:21:40 +00:00
|
|
|
/// The page where comments images are stored
|
|
|
|
pub const PATH_COMMENTS_IMAGES: &str = "imgcommentaire";
|
|
|
|
|
2020-06-20 08:31:58 +00:00
|
|
|
/// Maximum requests size (50 Mo)
|
2020-07-10 06:21:40 +00:00
|
|
|
pub const MAX_REQUEST_SIZE: usize = 50000000;
|
2020-07-10 09:59:18 +00:00
|
|
|
|
|
|
|
/// Maximum number of choices per survey
|
2020-07-13 12:52:25 +00:00
|
|
|
pub const MAXIMUM_NUMBER_SURVEY_CHOICES: usize = 20;
|
|
|
|
|
|
|
|
/// Length of password reset token
|
|
|
|
pub const PASSWORD_RESET_TOKEN_LENGTH: usize = 255;
|
|
|
|
|
|
|
|
/// Duration of the validity of a password reset token (6 hours)
|
2020-07-13 16:56:36 +00:00
|
|
|
pub const PASSWORD_RESET_TOKEN_LIFETIME: u64 = 60 * 60 * 6;
|
|
|
|
|
|
|
|
/// Minimum password length
|
2020-07-14 11:33:17 +00:00
|
|
|
pub const PASSWORD_MIN_LENGTH: usize = 3;
|
|
|
|
|
|
|
|
/// Supported languages (for ComunicWeb)
|
2021-02-05 13:49:45 +00:00
|
|
|
pub const SUPPORTED_LANGUAGES: &'static [&'static str] = &["en", "fr"];
|
|
|
|
|
|
|
|
/// Interval at which last active time of user should be recorded
|
2021-02-13 13:37:15 +00:00
|
|
|
pub const USER_LAST_ACTIVITY_REFRESH: Duration = Duration::from_secs(60);
|
|
|
|
|
|
|
|
/// Interval at which last activity of an access token should be recorded
|
2021-02-13 15:36:39 +00:00
|
|
|
pub const USER_ACCESS_TOKEN_ACTIVITY_REFRESH: Duration = Duration::from_secs(60 * 60);
|
|
|
|
|
2021-02-14 17:54:39 +00:00
|
|
|
/// Sleep time before initial clean up execution
|
|
|
|
pub const INITIAL_REFRESH_LOAD_INTERVAL: Duration = Duration::from_secs(5);
|
|
|
|
|
2021-02-13 15:36:39 +00:00
|
|
|
/// Interval between each cleanup operation (every hour)
|
2021-02-20 08:07:30 +00:00
|
|
|
pub const CLEAN_UP_INTERVAL: Duration = Duration::from_secs(60 * 60);
|
|
|
|
|
|
|
|
/// Minimal mobile version supported
|
2021-03-09 16:14:02 +00:00
|
|
|
pub const MIN_SUPPORTED_MOBILE_VERSION: &str = "1.1.2";
|
2021-03-04 17:51:52 +00:00
|
|
|
|
|
|
|
/// Minimum message length
|
2021-03-05 11:30:40 +00:00
|
|
|
pub const MIN_CONVERSATION_MESSAGE_LENGTH: usize = 1;
|
2021-03-06 08:35:36 +00:00
|
|
|
pub const MAX_CONVERSATION_MESSAGE_LENGTH: usize = 16000;
|
|
|
|
|
|
|
|
/// Allowed files type in conversations
|
|
|
|
pub const ALLOWED_CONVERSATION_FILES_TYPES: [&str; 17] = [
|
|
|
|
"image/png", "image/jpeg", "image/gif", "image/bmp",
|
|
|
|
"application/pdf",
|
|
|
|
"audio/mpeg",
|
|
|
|
"video/mp4",
|
|
|
|
"application/zip",
|
|
|
|
|
|
|
|
// MS Office docs
|
|
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
|
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
|
|
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
|
|
|
|
|
|
// Open Office docs
|
|
|
|
"application/vnd.oasis.opendocument.text",
|
|
|
|
"application/vnd.oasis.opendocument.presentation",
|
|
|
|
"application/vnd.oasis.opendocument.spreadsheet",
|
|
|
|
|
|
|
|
// Source code docs (UTF-8 encoded)
|
|
|
|
"text/x-csrc", "text/plain", "text/x-c++src"
|
|
|
|
];
|
|
|
|
|
|
|
|
/// File maximum size in conversations (10 Mb)
|
2021-03-08 16:54:45 +00:00
|
|
|
pub const CONVERSATION_FILES_MAX_SIZE: usize = 10 * 1024 * 1024;
|
|
|
|
|
|
|
|
/// Minimum interval before notifying again that someone is writing
|
|
|
|
pub const CONVERSATION_WRITING_EVENT_INTERVAL: u64 = 1;
|
|
|
|
|
|
|
|
/// Lifetime of conversation writing event
|
|
|
|
pub const CONVERSATION_WRITING_EVENT_LIFETIME: u64 = 3;
|