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
/******************************************************************************************
📍 منصة تحليل الأمان الجغرافي MKT KSA – تطوير منصور بن خالد
* 📄 رخصة Apache 2.0 – يسمح بالاستخدام والتعديل بشرط النسبة وعدم تقديم ضمانات.
* MKT KSA Geolocation Security – Developed by Mansour Bin Khalid (KSA 🇸🇦)
* Licensed under Apache 2.0 – https://www.apache.org/licenses/LICENSE-2.0
* © 2025 All rights reserved.
اسم الملف: helpers.rs
المسار: src/utils/helpers.rs
دور الملف:
يحتوي هذا الملف على دوال وأدوات مساعدة عامة تُستخدم في أجزاء متعددة من المشروع (مثل التشفير، حساب المسافة، إلخ).
الهدف هو تجميع الوظائف المساعدة المتكررة في مكان واحد لسهولة الصيانة وإعادة الاستخدام.
File Name: helpers.rs
Path: src/utils/helpers.rs
File Role:
This file contains general helper functions and utilities used across the project (e.g., encryption, distance calculation, etc.).
The goal is to centralize common helper logic for easier maintenance and reuse.
******************************************************************************************/
use Error;
/// Arabic: يقوم بتشفير البيانات باستخدام مفتاح مشترك. هذا تنفيذ وهمي.
/// English: Encrypts data using a shared key. This is a dummy implementation.
/// Arabic: يحسب المسافة بالكيلومترات بين نقطتي خط عرض وخط طول (صيغة هافرساين).
/// هذا تنفيذ وهمي حاليًا.
/// English: Calculates the distance in kilometers between two lat/lon points (Haversine formula).
/// This is currently a dummy implementation.