Update: 2026-06-11 13:47:39

This commit is contained in:
Hamza-Ayed
2026-06-11 13:47:40 +03:00
parent 977adfe99d
commit c5170a88d2
516 changed files with 3654 additions and 3321 deletions

View File

@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.10.2) # 3.10.2 is fine, but no need to go as high as 3.31.5
project(intaleq_admin) # Good
project(siro_admin) # Good
# Add your C++ source file(s) to create a SHARED library.
add_library(native-lib SHARED native-lib.cpp)

View File

@@ -521,7 +521,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
@@ -538,7 +538,7 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -556,7 +556,7 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
@@ -572,7 +572,7 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
@@ -705,7 +705,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -729,7 +729,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;

View File

@@ -11,17 +11,17 @@ class AppLink {
// static final String endPoint = box.read(BoxName.serverChosen);
// static final String server = Env.seferCairoServer;
static final String server = 'https://api.intaleq.xyz/intaleq_v3';
static final String endPoint = 'https://api.intaleq.xyz/intaleq_v3';
static final String syria = 'https://syria.intaleq.xyz/intaleq';
static final String server = 'https://api.intaleq.xyz/siro_v3';
static final String endPoint = 'https://api.intaleq.xyz/siro_v3';
static final String syria = 'https://syria.intaleq.xyz/siro';
static String paymentServer = 'https://walletintaleq.intaleq.xyz/v1/main';
static String locationServer = 'https://location.intaleq.xyz/intaleq/ride/location';
static String locationServerSide = 'https://location.intaleq.xyz/intaleq/ride/location';
static String locationServer = 'https://location.intaleq.xyz/siro/ride/location';
static String locationServerSide = 'https://location.intaleq.xyz/siro/ride/location';
static String mapSaasRoute = 'https://map-saas.intaleqapp.com/api/maps/route';
static String mapSaasPlaces = 'https://map-saas.intaleqapp.com/api/geocoding/places';
static const String routeApiBaseUrl = "https://routesjo.intaleq.xyz/route/v1/driving";
static String loginJwtDriver =
"https://api.intaleq.xyz/intaleq/loginAdmin.php";
"https://api.intaleq.xyz/siro/loginAdmin.php";
//=============================
//=============================
static final getAllFingerprints =

View File

@@ -472,7 +472,7 @@ class FirebaseMessagesController extends GetxController {
// Send the notification
final response = await http.post(
Uri.parse(
'https://fcm.googleapis.com/v1/projects/intaleq-d48a7/messages:send'),
'https://fcm.googleapis.com/v1/projects/siro-d48a7/messages:send'),
headers: <String, String>{
'Content-Type': 'application/json',
'Authorization': 'Bearer $accessToken',

View File

@@ -6,7 +6,7 @@ import '../../print.dart';
class NotificationService {
// تأكد من أن هذا هو الرابط الصحيح لملف الإرسال
static const String _serverUrl =
'https://syria.intaleq.xyz/intaleq/fcm/send_fcm.php';
'https://syria.intaleq.xyz/siro/fcm/send_fcm.php';
static Future<void> sendNotification({
required String target,

View File

@@ -8,7 +8,7 @@ import 'package:get/get.dart';
class SecurityChecks {
static const platform = MethodChannel(
'com.intaleq.intaleq_admin/security'); // Choose a unique channel name
'com.siro.siro_admin/security'); // Choose a unique channel name
static Future<bool> isDeviceCompromised() async {
try {

View File

@@ -66,7 +66,7 @@ class MainApp extends StatelessWidget {
Widget build(BuildContext context) {
return GetMaterialApp(
debugShowCheckedModeBanner: false,
title: 'Intaleq Admin',
title: 'Siro Admin',
locale: const Locale('ar'),
fallbackLocale: const Locale('en'),
themeMode: ThemeMode.dark,

View File

@@ -307,7 +307,7 @@ class _AdminHomePageState extends State<AdminHomePage>
colors: [_accent, _info],
).createShader(bounds),
child: const Text(
'Intaleq Admin',
'Siro Admin',
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.w700,
@@ -746,7 +746,7 @@ class _AdminHomePageState extends State<AdminHomePage>
ActionItem('السائقون', Icons.drive_eta_rounded, _warning,
() => Get.to(() => CaptainsPage())),
ActionItem('المراقب', Icons.track_changes_rounded, _danger,
() => Get.to(() => IntaleqTrackerScreen())),
() => Get.to(() => SiroTrackerScreen())),
],
),
ActionCategory(

View File

@@ -31,7 +31,7 @@ class DriverCacheController extends GetxController {
try {
// Using GetConnect to fetch the JSON directly
final response = await GetConnect().get(
'https://api.intaleq.xyz/intaleq/ride/location/active_drivers_cache.json',
'https://api.intaleq.xyz/siro/ride/location/active_drivers_cache.json',
);
if (response.body != null && response.body is Map) {

View File

@@ -12,14 +12,14 @@ import '../../../constant/box_name.dart';
import '../../../controller/functions/crud.dart';
import '../../../main.dart';
class IntaleqTrackerScreen extends StatefulWidget {
const IntaleqTrackerScreen({super.key});
class SiroTrackerScreen extends StatefulWidget {
const SiroTrackerScreen({super.key});
@override
State<IntaleqTrackerScreen> createState() => _IntaleqTrackerScreenState();
State<SiroTrackerScreen> createState() => _SiroTrackerScreenState();
}
class _IntaleqTrackerScreenState extends State<IntaleqTrackerScreen>
class _SiroTrackerScreenState extends State<SiroTrackerScreen>
with TickerProviderStateMixin {
// === Map Controller ===
final MapController _mapController = MapController();

View File

@@ -67,7 +67,7 @@
331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
33CC10ED2044A3C60003C045 /* intaleq_admin.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = intaleq_admin.app; sourceTree = BUILT_PRODUCTS_DIR; };
33CC10ED2044A3C60003C045 /* siro_admin.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = siro_admin.app; sourceTree = BUILT_PRODUCTS_DIR; };
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
@@ -144,7 +144,7 @@
33CC10EE2044A3C60003C045 /* Products */ = {
isa = PBXGroup;
children = (
33CC10ED2044A3C60003C045 /* intaleq_admin.app */,
33CC10ED2044A3C60003C045 /* siro_admin.app */,
331C80D5294CF71000263BE5 /* RunnerTests.xctest */,
);
name = Products;
@@ -250,7 +250,7 @@
);
name = Runner;
productName = Runner;
productReference = 33CC10ED2044A3C60003C045 /* intaleq_admin.app */;
productReference = 33CC10ED2044A3C60003C045 /* siro_admin.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
@@ -497,10 +497,10 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/intaleq_admin.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/intaleq_admin";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/siro_admin.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/siro_admin";
};
name = Debug;
};
@@ -512,10 +512,10 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/intaleq_admin.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/intaleq_admin";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/siro_admin.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/siro_admin";
};
name = Release;
};
@@ -527,10 +527,10 @@
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin.RunnerTests;
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/intaleq_admin.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/intaleq_admin";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/siro_admin.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/siro_admin";
};
name = Profile;
};

View File

@@ -15,7 +15,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "intaleq_admin.app"
BuildableName = "siro_admin.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@@ -31,7 +31,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "intaleq_admin.app"
BuildableName = "siro_admin.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@@ -66,7 +66,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "intaleq_admin.app"
BuildableName = "siro_admin.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@@ -83,7 +83,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "intaleq_admin.app"
BuildableName = "siro_admin.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>

View File

@@ -5,10 +5,10 @@
// 'flutter create' template.
// The application's name. By default this is also the title of the Flutter window.
PRODUCT_NAME = intaleq_admin
PRODUCT_NAME = siro_admin
// The application's bundle identifier
PRODUCT_BUNDLE_IDENTIFIER = com.intaleq.intaleqAdmin
PRODUCT_BUNDLE_IDENTIFIER = com.siro.siroAdmin
// The copyright displayed in application information
PRODUCT_COPYRIGHT = Copyright © 2025 com.intaleq. All rights reserved.
PRODUCT_COPYRIGHT = Copyright © 2025 com.siro. All rights reserved.

View File

@@ -23,13 +23,13 @@
<!-- iOS meta tags & icons -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="intaleq_admin">
<meta name="apple-mobile-web-app-title" content="siro_admin">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<title>intaleq_admin</title>
<title>siro_admin</title>
<link rel="manifest" href="manifest.json">
</head>
<body>

View File

@@ -1,6 +1,6 @@
{
"name": "intaleq_admin",
"short_name": "intaleq_admin",
"name": "siro_admin",
"short_name": "siro_admin",
"start_url": ".",
"display": "standalone",
"background_color": "#ffffff",