mirror of
				https://gitlab.nic.cz/turris/reforis/foris-js.git
				synced 2025-11-03 23:00:31 +01:00 
			
		
		
		
	Move vadliadtions and forisUrls to utils.
This commit is contained in:
		
							
								
								
									
										31
									
								
								src/utils/forisUrls.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								src/utils/forisUrls.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,31 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
 | 
			
		||||
 *
 | 
			
		||||
 * This is free software, licensed under the GNU General Public License v3.
 | 
			
		||||
 * See /LICENSE for more information.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
export const REFORIS_URL_PREFIX = "/reforis";
 | 
			
		||||
export const REFORIS_API_URL_PREFIX = `${REFORIS_URL_PREFIX}/api`;
 | 
			
		||||
 | 
			
		||||
export const ForisURLs = {
 | 
			
		||||
    login: `${REFORIS_URL_PREFIX}/login`,
 | 
			
		||||
    logout: `${REFORIS_URL_PREFIX}/logout`,
 | 
			
		||||
 | 
			
		||||
    static: `${REFORIS_URL_PREFIX}/static/reforis`,
 | 
			
		||||
    wifi: `${REFORIS_URL_PREFIX}/network-settings/wifi`,
 | 
			
		||||
 | 
			
		||||
    packageManagement: {
 | 
			
		||||
        updateSettings: `${REFORIS_URL_PREFIX}/package-management/update-settings`,
 | 
			
		||||
        updates: `${REFORIS_URL_PREFIX}/package-management/updates`,
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    // Notifications links are used with <Link/> inside Router, thus url subdir is not required.
 | 
			
		||||
    notifications: "/notifications",
 | 
			
		||||
    notificationsSettings: "/administration/notifications-settings",
 | 
			
		||||
 | 
			
		||||
    luci: "/cgi-bin/luci",
 | 
			
		||||
 | 
			
		||||
    // API
 | 
			
		||||
    reboot: `${REFORIS_API_URL_PREFIX}/reboot`,
 | 
			
		||||
};
 | 
			
		||||
							
								
								
									
										52
									
								
								src/utils/validations.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										52
									
								
								src/utils/validations.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,52 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/)
 | 
			
		||||
 *
 | 
			
		||||
 * This is free software, licensed under the GNU General Public License v3.
 | 
			
		||||
 * See /LICENSE for more information.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Set of validation helpers and validation error messages.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
export const ERROR_MESSAGES = {
 | 
			
		||||
    IPv4: _("This is not a valid IPv4 address."),
 | 
			
		||||
    IPv6: _("This is not a valid IPv6 address."),
 | 
			
		||||
    IPv6Prefix: _("This is not a valid IPv6 prefix."),
 | 
			
		||||
    domain: _("This is not a valid domain name."),
 | 
			
		||||
    DUID: _("This is not a valid DUID."),
 | 
			
		||||
    MAC: _("This is not a valid MAC address."),
 | 
			
		||||
    MultipleEmails: _("Doesn't contain a list of emails separated by commas."),
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const REs = {
 | 
			
		||||
    IPv4: /^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,
 | 
			
		||||
    IPv6: /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,
 | 
			
		||||
    IPv6Prefix: /^s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:)))(%.+)?s*(\/([0-9]|[1-9][0-9]|1[0-1][0-9]|12[0-8]))$/,
 | 
			
		||||
    domain: /^([a-zA-Z0-9-]{1,63}\.?)*$/,
 | 
			
		||||
    DUID: /^([0-9a-fA-F]{2}){4}([0-9a-fA-F]{2})*$/,
 | 
			
		||||
    MAC: /^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/,
 | 
			
		||||
    MultipleEmails: /^([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ *)( *, *[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ *)*$/,
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const createValidator = (fieldType) => (value) => {
 | 
			
		||||
    if (value && value !== "") return REs[fieldType].test(value) ? undefined : ERROR_MESSAGES[fieldType];
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const validateIPv4Address = createValidator("IPv4");
 | 
			
		||||
const validateIPv6Address = createValidator("IPv6");
 | 
			
		||||
const validateIPv6Prefix = createValidator("IPv6Prefix");
 | 
			
		||||
const validateDomain = createValidator("domain");
 | 
			
		||||
const validateDUID = createValidator("DUID");
 | 
			
		||||
const validateMAC = createValidator("MAC");
 | 
			
		||||
const validateMultipleEmails = createValidator("MultipleEmails");
 | 
			
		||||
 | 
			
		||||
export {
 | 
			
		||||
    validateIPv4Address,
 | 
			
		||||
    validateIPv6Address,
 | 
			
		||||
    validateIPv6Prefix,
 | 
			
		||||
    validateDomain,
 | 
			
		||||
    validateDUID,
 | 
			
		||||
    validateMAC,
 | 
			
		||||
    validateMultipleEmails,
 | 
			
		||||
};
 | 
			
		||||
		Reference in New Issue
	
	Block a user