reinhardt-web 0.1.0-rc.28

A full-stack API framework for Rust, inspired by Django and Django REST Framework
Documentation
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
// The `User` trait is deprecated in favour of the new `#[model]`-based user macro system.
// This crate re-exports it for downstream compatibility during the transition period.
#![allow(deprecated)]

//! # Reinhardt
//!
//! A full-stack API framework for Rust, inspired by Django and Django REST Framework.
//!
//! Reinhardt provides a complete, batteries-included solution for building production-ready
//! REST APIs with Rust. It follows Rust's composition patterns instead of Python's inheritance
//! model, making full use of traits, generics, and zero-cost abstractions.
//!
//! ## Core Principles
//!
//! - **Composition over Inheritance**: Uses Rust's trait system for composable behavior
//! - **Type Safety**: Leverages Rust's type system for compile-time guarantees
//! - **Zero-Cost Abstractions**: High-level ergonomics without runtime overhead
//! - **Async-First**: Built on tokio and async/await from the ground up
//!
//! ## Feature Flags
//!
//! Reinhardt provides flexible feature flags to control compilation and reduce binary size.
//!
//! ### Presets
//!
//! - `minimal` - Core functionality only (routing, DI, params)
//! - `full` (default) - All features enabled
//! - `standard` - Balanced for most projects
//! - `api-only` - REST API without templates/forms
//! - `graphql-server` - GraphQL-focused setup
//! - `websocket-server` - WebSocket-centric setup
//! - `cli-tools` - CLI and background jobs
//! - `test-utils` - Testing utilities
//!
//! ### Fine-grained Control
//!
//! Fine-grained feature flags for precise control over included functionality:
//!
//! #### Authentication ✅
//! - `auth-jwt` - JWT authentication
//! - `auth-session` - Session-based authentication
//! - `auth-oauth` - OAuth2 support
//! - `auth-token` - Token authentication
//!
//! #### Database Backends ✅
//! - `db-postgres` - PostgreSQL support
//! - `db-mysql` - MySQL support
//! - `db-sqlite` - SQLite support
//! - `db-cockroachdb` - CockroachDB support (distributed transactions)
//!
//! #### Middleware ✅
//! - `middleware-cors` - CORS (Cross-Origin Resource Sharing) middleware
//! - `middleware-compression` - Response compression (Gzip, Brotli)
//! - `middleware-security` - Security headers (HSTS, XSS Protection, etc.)
//! - `middleware-rate-limit` - Rate limiting and throttling
//!
//! See [Cargo.toml feature definitions](https://github.com/kent8192/reinhardt/blob/main/Cargo.toml) for detailed documentation.
//!
//! ## Quick Example
//!
//! ```rust,ignore
//! use reinhardt::prelude::*;
//! use serde::{Serialize, Deserialize};
//! use std::sync::Arc;
//!
//! // Define your model (using composition, not inheritance)
//! #[derive(Debug, Clone, Serialize, Deserialize)]
//! struct User {
//!     id: Option<i64>,
//!     username: String,
//!     email: String,
//! }
//!
//! // Implement Model trait
//! impl Model for User {
//!     type PrimaryKey = i64;
//!     fn table_name() -> &'static str { "users" }
//!     fn primary_key(&self) -> Option<&Self::PrimaryKey> { self.id.as_ref() }
//!     fn set_primary_key(&mut self, value: Self::PrimaryKey) { self.id = Some(value); }
//! }
//!
//! // Create a ViewSet (no inheritance needed!)
//! let users_viewset = ModelViewSet::<User, JsonSerializer<User>>::new("users");
//!
//! // Set up routing
//! let mut router = DefaultRouter::new();
//! router.register_viewset("users", users_viewset);
//!
//! // Add middleware using composition
//! let app = MiddlewareChain::new(Arc::new(router))
//!     .with_middleware(Arc::new(LoggingMiddleware::new()))
//!     .with_middleware(Arc::new(CorsMiddleware::permissive()));
//! ```

#![cfg_attr(docsrs, feature(doc_cfg))]

// Re-export external crates for macro support
// Macro-generated code uses paths like `::reinhardt::reinhardt_apps::AppConfig`
// These wrapper modules provide the namespace structure that macros expect.
// Note: These are marked #[doc(hidden)] because they are internal dependencies
// used by macro-generated code. Users should not use these directly.

// WASM-compatible re-exports (always available)
#[cfg(feature = "pages")]
#[doc(hidden)]
pub mod reinhardt_pages {
	pub use reinhardt_pages::*;
}

#[doc(hidden)]
pub mod reinhardt_types {
	// Public API surface glob re-export requires allowing unused imports and unreachable pub
	#[allow(unused_imports, unreachable_pub)]
	pub use reinhardt_core::types::*;
}

// Server-side only re-exports (NOT for WASM)
#[cfg(all(feature = "core", native))]
#[doc(hidden)]
pub mod reinhardt_apps {
	pub use reinhardt_apps::*;
}

// WASM shim for `reinhardt_apps` (Issue #4161).
//
// `#[url_patterns(...)]` and `#[app_config(...)]` expand to code that
// references `::reinhardt::reinhardt_apps::apps::AppLabel` and
// `::reinhardt::reinhardt_apps::AppConfig`. The real `reinhardt-apps`
// crate depends on `tokio` / `reinhardt-server` and is decidedly
// native-only, so on wasm we expose only the surface the macro emits.
//
// These shims compile but never execute: the dashboard-style SPA
// imports them transitively, but only constructs `UnifiedRouter` /
// `WebSocketRouter`, which are themselves wasm-side stubs (see below).
#[cfg(not(native))]
#[doc(hidden)]
pub mod reinhardt_apps {
	/// Application label trait (wasm shim).
	///
	/// Mirrors the trait emitted by `installed_apps!` and required by
	/// `#[url_patterns]` expansions. The native build re-exports the real
	/// trait from `reinhardt-apps`.
	pub mod apps {
		pub trait AppLabel {
			const LABEL: &'static str;
			fn path(&self) -> &'static str {
				Self::LABEL
			}
		}
	}

	/// Application configuration (wasm shim).
	///
	/// `#[app_config(name = "...", label = "...")]` expands to
	/// `pub fn config() -> AppConfig { AppConfig::new(name, label).with_verbose_name(...) }`.
	/// On wasm we provide a builder-shaped stub with the same signatures so
	/// the expansion compiles. None of these methods are intended to be
	/// invoked at runtime in a wasm consumer.
	pub struct AppConfig {
		_private: (),
	}

	impl AppConfig {
		pub fn new(_name: impl Into<String>, _label: impl Into<String>) -> Self {
			Self { _private: () }
		}

		pub fn with_verbose_name(self, _verbose_name: impl Into<String>) -> Self {
			self
		}
	}
}

#[cfg(all(feature = "di", native))]
#[doc(hidden)]
pub mod reinhardt_di {
	pub use reinhardt_di::*;
}

#[cfg(all(feature = "auth", native))]
#[doc(hidden)]
pub mod reinhardt_auth {
	pub use reinhardt_auth::*;
}

#[cfg(all(feature = "commands", native))]
#[doc(hidden)]
pub mod reinhardt_commands {
	pub use reinhardt_commands::*;
}

#[cfg(native)]
#[doc(hidden)]
pub mod reinhardt_core {
	pub use reinhardt_core::*;
	// For macro compatibility: Re-export EndpointMetadata at module level
	pub use reinhardt_core::endpoint::EndpointMetadata;
}

#[cfg(native)]
#[doc(hidden)]
pub mod reinhardt_http {
	pub use reinhardt_http::*;
}

#[cfg(all(feature = "di", native))]
#[doc(hidden)]
pub mod reinhardt_params {
	pub use reinhardt_di::params::*;
}

#[cfg(native)]
#[doc(hidden)]
pub mod async_trait {
	pub use async_trait::*;
}

#[cfg(all(feature = "database", native))]
#[doc(hidden)]
pub mod linkme {
	pub use linkme::*;
}

#[cfg(all(feature = "database", native))]
#[doc(hidden)]
pub mod ctor {
	pub use ctor::*;
}

// Re-export paste for macro-generated code (Issue #3526: namespaced URL resolvers)
#[cfg(native)]
#[doc(hidden)]
pub use paste::paste;

#[cfg(all(feature = "database", native))]
#[doc(hidden)]
pub mod reinhardt_orm {
	pub use reinhardt_db::orm::*;
}

// Module re-exports following Django's structure
// WASM-compatible modules (always available)
#[cfg(feature = "pages")]
pub mod pages;

// Server-side only modules (NOT for WASM)
#[cfg(all(feature = "admin", native))]
pub mod admin;
#[cfg(all(feature = "core", native))]
pub mod apps;
#[cfg(all(feature = "commands", native))]
pub mod commands;
#[cfg(all(feature = "conf", native))]
pub mod conf;
#[cfg(all(feature = "core", native))]
pub mod core;
#[cfg(all(feature = "deeplink", native))]
pub mod deeplink;
#[cfg(all(feature = "dentdelion", native))]
pub mod dentdelion;
#[cfg(all(feature = "di", native))]
pub mod di;
#[cfg(all(feature = "dispatch", native))]
pub mod dispatch;
#[cfg(all(feature = "forms", native))]
pub mod forms;
#[cfg(all(feature = "graphql", native))]
pub mod graphql;
#[cfg(all(feature = "grpc", native))]
pub mod grpc;
#[cfg(native)]
pub mod http;
#[cfg(all(feature = "i18n", native))]
pub mod i18n;
#[cfg(all(feature = "mail", native))]
pub mod mail;
#[cfg(all(any(feature = "standard", feature = "middleware"), native))]
pub mod middleware;
#[cfg(all(feature = "rest", native))]
pub mod rest;
#[cfg(all(feature = "server", native))]
pub mod server;
#[cfg(all(feature = "shortcuts", native))]
pub mod shortcuts;
#[cfg(feature = "streaming")]
pub mod streaming;
#[cfg(all(feature = "tasks", native))]
pub mod tasks;
#[cfg(all(feature = "templates", native))]
pub mod template;
#[cfg(all(feature = "test", native))]
pub mod test;
#[cfg(native)]
pub mod urls;

/// WASM shim for the `urls` module (Issue #4161).
///
/// Provides the namespace structure that `#[url_patterns]` and downstream
/// wasm SPAs reference (`reinhardt::urls::prelude::UnifiedRouter`,
/// `reinhardt::urls::proxy`). The real `reinhardt-urls` crate is wasm-safe,
/// but its `prelude` is gated `#[cfg(all(feature = "routers", native))]`.
///
/// When the `client-router` feature is enabled (the realistic configuration
/// for wasm consumers that use `mode = unified`), this re-exports the real
/// wasm-side `UnifiedRouter` from `reinhardt_urls::routers`. That type
/// provides the correct closure signatures
/// (`server: FnOnce(ServerRouterStub) -> ServerRouterStub`,
/// `client: FnOnce(ClientRouter) -> ClientRouter`) so user-supplied bodies
/// such as `.client(|c| c.named_route(...))` type-check on wasm.
///
/// Without `client-router`, an inert stub is exposed so that the path
/// resolves; user bodies that invoke `.server`/`.client` on the stub are
/// expected to be no-ops in that minimal configuration.
#[cfg(not(native))]
pub mod urls {
	/// Wasm-side stub mirroring `reinhardt_urls::prelude`.
	pub mod prelude {
		// Real wasm `UnifiedRouter` (with `ServerRouterStub` / `ClientRouter`
		// builder closures). Available when `client-router` is enabled.
		#[cfg(feature = "client-router")]
		pub use reinhardt_urls::routers::unified_router::ServerRouterStub;
		#[cfg(feature = "client-router")]
		pub use reinhardt_urls::routers::{ClientRouter, UnifiedRouter};

		// Inert fallback for wasm builds without `client-router`. Closures
		// receive a stub parameter typed to match the real wasm API shape so
		// that no-argument forms (`.server(|_| _)`) still type-check.
		#[cfg(not(feature = "client-router"))]
		pub use stub::*;

		#[cfg(not(feature = "client-router"))]
		mod stub {
			/// Empty stand-in for `reinhardt_urls::routers::ServerRouterStub`.
			pub struct ServerRouterStub;
			/// Empty stand-in for `reinhardt_urls::routers::client_router::ClientRouter`.
			pub struct ClientRouter;

			pub struct UnifiedRouter {
				_private: (),
			}

			impl UnifiedRouter {
				pub fn new() -> Self {
					Self { _private: () }
				}

				pub fn with_namespace(self, _namespace: impl Into<String>) -> Self {
					self
				}

				pub fn server<F>(self, _f: F) -> Self
				where
					F: FnOnce(ServerRouterStub) -> ServerRouterStub,
				{
					self
				}

				pub fn client<F>(self, _f: F) -> Self
				where
					F: FnOnce(ClientRouter) -> ClientRouter,
				{
					self
				}
			}

			impl Default for UnifiedRouter {
				fn default() -> Self {
					Self::new()
				}
			}
		}
	}

	/// Wasm-side stub for the `proxy` submodule referenced by
	/// `crate_paths::get_reinhardt_proxy_crate()`. Empty on wasm.
	pub mod proxy {}
}

#[cfg(native)]
pub mod utils;
#[cfg(native)]
pub mod views;

// Server-side only re-exports (NOT for WASM)
// Re-export app types from reinhardt-apps
#[cfg(all(feature = "core", native))]
pub use reinhardt_apps::{AppConfig, AppError, AppResult, Apps};

// Re-export macros
// Issue #4161: `AppConfig` (derive), `app_config` (attribute), and `installed_apps`
// are proc-macros that run host-side; the macro-emitted code references
// `::reinhardt::macros::AppConfig` and `::reinhardt::reinhardt_apps::*`.
// Re-exporting them on wasm (matching #4156's pattern for routes/url_patterns)
// enables downstream client crates to use `#[app_config]` and `#[url_patterns]`
// cross-target. The actual runtime types they reference are provided by the
// wasm shim modules below.
pub use reinhardt_macros::{AppConfig, app_config, installed_apps};

// Re-export settings attribute macro (requires conf feature)
#[cfg(all(feature = "conf", native))]
pub use reinhardt_macros::settings;

// Re-export Model derive macro and model attribute macro (requires database feature)
#[cfg(all(feature = "database", native))]
pub use reinhardt_macros::{Model, model};

// Re-export collect_migrations macro (requires database feature)
#[cfg(all(feature = "database", native))]
pub use reinhardt_macros::collect_migrations;

// Re-export reinhardt_migrations crate (used by collect_migrations! macro)
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::migrations;

// Alias for macro compatibility
#[cfg(all(feature = "database", native))]
#[doc(hidden)]
pub use migrations as reinhardt_migrations;

// Re-export reinhardt_macros as a module for hierarchical imports
// This allows macro-generated code to use ::reinhardt::macros::Model
// Ungated on wasm (Issue #4161): the `#[app_config]` attribute macro
// emits `#[derive(::reinhardt::macros::AppConfig)]`, so downstream wasm
// consumers need this path to resolve. `reinhardt-macros` is a proc-macro
// crate that runs host-side and is wasm-safe to re-export.
#[doc(hidden)]
pub mod macros {
	pub use reinhardt_macros::*;
}

// Re-export HTTP method macros
#[cfg(native)]
pub use reinhardt_macros::{api_view, delete, get, patch, post, put};

// Re-export `flatten_imports` and provide a deprecated `define_views!` shim for compatibility
#[cfg(native)]
pub use reinhardt_macros::flatten_imports;
#[cfg(native)]
#[deprecated(
	since = "0.1.0-rc.16",
	note = "use `flatten_imports!` instead. `define_views!` will be removed in a future version."
)]
#[macro_export]
macro_rules! define_views {
    ($($tt:tt)*) => {
        $crate::flatten_imports!($($tt)*)
    };
}
pub use reinhardt_macros::routes;
pub use reinhardt_macros::url_patterns;
#[cfg(native)]
pub use reinhardt_macros::viewset;

// client_routes! proc macro removed: superseded by #[url_patterns(client = true)]

// Re-export admin attribute macro (requires admin feature)
#[cfg(all(feature = "admin", native))]
pub use reinhardt_macros::admin;

// Re-export settings from dedicated crate
#[cfg(all(feature = "conf", native))]
#[allow(deprecated)]
// Re-exports deprecated Settings and AdvancedSettings for backward compatibility
pub use reinhardt_conf::settings::{
	AdvancedSettings, CacheSettings, CorsSettings, DatabaseConfig, EmailSettings, LoggingSettings,
	MediaSettings, MiddlewareConfig, SessionSettings, Settings, SettingsError, StaticSettings,
	TemplateConfig,
};

#[cfg(all(feature = "conf", native))]
pub use reinhardt_conf::SecuritySettings;

#[cfg(all(feature = "conf", native))]
pub use reinhardt_conf::settings::core_settings::{CoreSettings, HasCoreSettings};

#[cfg(all(feature = "conf", native))]
pub use reinhardt_conf::settings::fragment::SettingsFragment;

#[cfg(all(feature = "conf", native))]
pub use reinhardt_conf::settings::fragment::HasSettings;

#[cfg(all(feature = "conf", native))]
pub use reinhardt_conf::settings::builder::SettingsBuilder;

#[cfg(all(feature = "conf", native))]
pub use reinhardt_conf::settings::profile::Profile;

#[cfg(all(feature = "conf", native))]
pub use reinhardt_conf::settings::sources::{
	DefaultSource, EnvSource, LowPriorityEnvSource, TomlFileSource,
};

// Re-export ApplyUpdate trait and macros
pub use reinhardt_core::apply_update::ApplyUpdate;
#[cfg(native)]
pub use reinhardt_macros::{ApplyUpdate as DeriveApplyUpdate, apply_update};

// Re-export core types
#[cfg(all(feature = "core", native))]
pub use reinhardt_core::{
	endpoint::EndpointMetadata,
	exception::{Error, Result},
};

// Re-export HTTP types
#[cfg(all(feature = "core", native))]
pub use reinhardt_http::{Handler, Middleware, MiddlewareChain, Request, Response, ViewResult};

// Re-export inventory crate (used by HTTP method macros for endpoint registration)
#[cfg(all(feature = "core", native))]
#[doc(hidden)]
pub use inventory;

// Re-export ORM
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::orm::{
	DatabaseBackend, DatabaseConnection, Model, QuerySet, SoftDeletable, SoftDelete, Timestamped,
	Timestamps,
};

// Re-export ORM query expressions (Django-style F/Q objects)
//
// # Availability
//
// Requires `database` feature.
//
// # Examples
//
// ```rust,no_run
// # use reinhardt::{F, Q};
// // Reference a field (like Django's F object)
// let price_expr = F::field("price");
//
// // Build complex queries (like Django's Q object)
// let filter = Q::and(vec![
//     Q::field("status").equals("active"),
//     Q::field("price").gt(100),
// ]);
// ```
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::orm::{
	// Query expressions (equivalent to Django's F and Q)
	Exists,
	F,
	FieldRef,
	// Query filter types
	Filter,
	FilterOperator,
	FilterValue,
	OuterRef,
	Q,
	QOperator,
	Subquery,
};

// Re-export ORM annotations and aggregations
//
// # Availability
//
// Requires `database` feature.
//
// # Examples
//
// ```rust,no_run
// # use reinhardt::{Annotation, Aggregate, F};
// # struct User;
// # impl User { fn objects() -> QueryBuilder { QueryBuilder } }
// # struct Product;
// # impl Product { fn objects() -> QueryBuilder { QueryBuilder } }
// # struct QueryBuilder;
// # impl QueryBuilder {
// #     fn annotate(self, _name: &str, _val: Annotation) -> Self { self }
// #     fn aggregate(self, _name: &str, _val: Aggregate) -> Self { self }
// # }
// // Annotate query results with computed values
// let query = User::objects()
//     .annotate("full_name", Annotation::concat(vec![
//         F::field("first_name"),
//         F::value(" "),
//         F::field("last_name"),
//     ]));
//
// // Aggregate data
// let stats = Product::objects()
//     .aggregate("avg_price", Aggregate::avg("price"));
// ```
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::orm::{
	// Aggregations
	Aggregate,
	AggregateFunc,
	AggregateValue,
	// Annotations
	Annotation,
	AnnotationValue,
};

// Re-export ORM transactions
//
// # Availability
//
// Requires `database` feature.
//
// # Examples
//
// ```rust,no_run
// # use reinhardt::{atomic, IsolationLevel, atomic_with_isolation};
// # #[tokio::main]
// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
// # struct User;
// # struct Profile;
// # let data = ();
// // Use atomic decorator for transactions
// // let result = atomic(|| async {
// //     let user = User::create(data).await?;
// //     let profile = Profile::create(user.id).await?;
// //     Ok((user, profile))
// // }).await?;
//
// // Or with specific isolation level
// // let result = atomic_with_isolation(IsolationLevel::Serializable, || async {
// //     // Your transaction code
// // }).await?;
// # Ok(())
// # }
// ```
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::orm::{
	// Transaction management
	IsolationLevel,
	QueryValue,
	Savepoint,
	Transaction,
	TransactionExecutor,
	TransactionScope,
	atomic,
	atomic_with_isolation,
};

// Re-export ORM database functions
//
// # Availability
//
// Requires `database` feature.
//
// # Examples
//
// ```rust,no_run
// # use reinhardt::{Concat, Upper, Lower, Now, F, Q};
// # struct User;
// # impl User { fn objects() -> QueryBuilder { QueryBuilder } }
// # struct QueryBuilder;
// # impl QueryBuilder {
// #     fn annotate(self, _name: &str, _val: impl std::any::Any) -> Self { self }
// #     fn filter(self, _q: impl std::any::Any) -> Self { self }
// # }
// // String functions
// let query = User::objects()
//     .annotate("full_name", Concat::new(vec![
//         F::field("first_name"),
//         F::value(" "),
//         F::field("last_name"),
//     ]))
//     .annotate("email_upper", Upper::new(F::field("email")));
//
// // Date/time functions
// let recent_users = User::objects()
//     .filter(Q::field("created_at").gte(Now::new()));
// ```
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::orm::{
	// Math functions
	Abs,
	// Utility functions
	Cast,
	Ceil,
	// String functions
	Concat,
	// Date/time functions
	CurrentDate,
	CurrentTime,
	Extract,
	ExtractComponent,
	Floor,
	Greatest,
	Least,
	Length,
	Lower,
	Mod,
	Now,
	NullIf,
	Power,
	Round,
	SqlType,
	Sqrt,
	Substr,
	Trim,
	TrimType,
	Upper,
};

// Re-export ORM window functions
//
// # Availability
//
// Requires `database` feature.
//
// # Examples
//
// ```rust,no_run
// # use reinhardt::{Window, RowNumber, Rank};
// # struct Product;
// # impl Product { fn objects() -> QueryBuilder { QueryBuilder } }
// # struct Sale;
// # impl Sale { fn objects() -> QueryBuilder { QueryBuilder } }
// # struct QueryBuilder;
// # impl QueryBuilder {
// #     fn annotate(self, _name: &str, _val: impl std::any::Any) -> Self { self }
// # }
// // Add row numbers to query results
// let query = Product::objects()
//     .annotate("row_num", RowNumber::new()
//         .over(Window::new().order_by("price")));
//
// // Ranking within partitions
// let query = Sale::objects()
//     .annotate("rank", Rank::new()
//         .over(Window::new()
//             .partition_by("category")
//             .order_by("-amount")));
// ```
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::orm::{
	// Ranking functions
	DenseRank,
	// Value functions
	FirstValue,
	// Window specification
	Frame,
	FrameBoundary,
	FrameType,
	Lag,
	LastValue,
	Lead,
	NTile,
	NthValue,
	Rank,
	RowNumber,
	Window,
	WindowFunction,
};

// Re-export ORM constraints and indexes
//
// # Availability
//
// Requires `database` feature.
//
// # Examples
//
// ```rust,no_run
// # use reinhardt::{UniqueConstraint, BTreeIndex};
// // Define constraints programmatically
// let constraint = UniqueConstraint::new(vec!["email"]);
//
// // Create indexes
// let index = BTreeIndex::new("user_email_idx", vec!["email"]);
// ```
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::orm::{
	// Indexes
	BTreeIndex,
	// Constraints
	CheckConstraint,
	Constraint,
	ForeignKeyConstraint,
	GinIndex,
	GistIndex,
	HashIndex,
	Index,
	OnDelete,
	OnUpdate,
	UniqueConstraint,
};

// Re-export reinhardt-query prelude types (via reinhardt-db orm)
// Query builder Query type is available as reinhardt::db::orm::Query
// to avoid name conflict with reinhardt::Query (DI params extractor).
// Value is re-exported as QueryBuilderValue to avoid conflicts with existing types.
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::orm::{IntoValue, Order, QueryBuilderValue};

// Re-export database pool
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::pool::{ConnectionPool, PoolConfig, PoolError};

// Re-export serializers
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::serializers::{Deserializer, JsonSerializer, Serializer};

// Re-export viewsets
#[cfg(native)]
pub use reinhardt_views::viewsets::{
	Action, ActionType, CreateMixin, DestroyMixin, GenericViewSet, ListMixin, ModelViewSet,
	ReadOnlyModelViewSet, RetrieveMixin, UpdateMixin, ViewSet,
};

// Re-export routers
#[cfg(native)]
pub use reinhardt_urls::routers::{
	DefaultRouter, PathMatcher, PathPattern, Route, Router, RouterFactory, ServerRouter,
	UrlPatternsRegistration, clear_router, get_router, is_router_registered, register_router,
	register_router_arc,
};

// Re-export client-router types (requires client-router feature)
// These types enable UnifiedRouter<V> with both .server() and .client() methods
#[cfg(feature = "client-router")]
pub use reinhardt_urls::routers::{
	ClientPathPattern, ClientRoute, ClientRouteMatch, ClientRouter, ClientUrlReverser, FromPath,
	HistoryState, NavigationType, ParamContext, SingleFromPath, UnifiedRouter,
	clear_client_reverser, get_client_reverser, register_client_reverser,
};
// Path extractor for client-side routing (separate from server-side Path from reinhardt-di)
#[cfg(feature = "client-router")]
pub use reinhardt_urls::routers::Path as ClientPath;

// Re-export URL resolver traits
pub use reinhardt_urls::routers::ClientUrlResolver;
#[cfg(native)]
pub use reinhardt_urls::routers::resolver::UrlResolver;
#[cfg(native)]
pub use reinhardt_urls::routers::resolver::WebSocketUrlResolver;

// Re-export auth
#[cfg(all(feature = "auth", native))]
#[allow(deprecated)] // CurrentUser is deprecated in favor of AuthUser
pub use reinhardt_auth::{
	AllowAny, AnonymousUser, AuthBackend, AuthInfo, AuthUser, BaseUser, CurrentUser, FullUser,
	IsAdminUser, IsAuthenticated, PasswordHasher, Permission, PermissionsMixin, SimpleUser,
	validate_auth_extractors,
};

// Re-export argon2-hasher gated types (DefaultUser, DefaultUserManager, Argon2Hasher)
// These require the argon2-hasher feature because the entire default_user module
// in reinhardt-auth is conditionally compiled with #[cfg(feature = "argon2-hasher")]
#[cfg(all(feature = "auth", feature = "argon2-hasher", native))]
#[cfg_attr(docsrs, doc(cfg(all(feature = "auth", feature = "argon2-hasher"))))]
pub use reinhardt_auth::{Argon2Hasher, DefaultUser, DefaultUserManager};

#[cfg(all(feature = "auth-jwt", native))]
pub use reinhardt_auth::{Claims, JwtAuth, JwtError};

// Re-export auth management
//
// # Availability
//
// Requires `auth` feature.
//
// # Examples
//
// ```rust,no_run
// # use reinhardt::{UserManager, GroupManager, ObjectPermission, CreateUserData, CreateGroupData};
// # #[tokio::main]
// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
// // User management
// let user_manager = UserManager::new();
// // let user = user_manager.create_user(CreateUserData {
// //     username: "alice".to_string(),
// //     email: "alice@example.com".to_string(),
// //     password: "secret".to_string(),
// // }).await?;
//
// // Group management
// let group_manager = GroupManager::new();
// // let group = group_manager.create_group(CreateGroupData {
// //     name: "editors".to_string(),
// // }).await?;
//
// // Object-level permissions
// // let perm = ObjectPermission::new("edit", user, article);
// # Ok(())
// # }
// ```
#[cfg(all(feature = "auth", native))]
pub use reinhardt_auth::{
	// Group management
	CreateGroupData,
	// User management
	CreateUserData,
	Group,
	GroupManagementError,
	GroupManagementResult,
	GroupManager,
	// Object-level permissions
	ObjectPermission,
	ObjectPermissionChecker,
	ObjectPermissionManager,
	UpdateUserData,
	UserManagementError,
	UserManagementResult,
	UserManager,
};

// Re-export middleware
// AuthenticationMiddleware requires both sessions (for session backend) and
// middleware (for the reinhardt-middleware crate dependency)
#[cfg(all(feature = "sessions", feature = "middleware", native))]
pub use reinhardt_middleware::AuthenticationMiddleware;

// JWT authentication middleware (requires middleware-auth-jwt feature)
#[cfg(all(feature = "middleware-auth-jwt", native))]
pub use reinhardt_middleware::JwtAuthMiddleware;

// Cookie-based session authentication middleware (requires sessions + middleware)
#[cfg(all(feature = "sessions", feature = "middleware", native))]
pub use reinhardt_middleware::{CookieSessionAuthMiddleware, CookieSessionConfig};

// Redis session backend (requires session-redis + middleware)
#[cfg(all(feature = "session-redis", feature = "middleware", native))]
pub use reinhardt_middleware::RedisSessionBackend;

// Origin guard middleware for CSRF protection
#[cfg(all(any(feature = "standard", feature = "middleware"), native))]
pub use reinhardt_middleware::OriginGuardMiddleware;

// Remote user authentication middleware (requires sessions + middleware)
#[cfg(all(feature = "sessions", feature = "middleware", native))]
pub use reinhardt_middleware::{PersistentRemoteUserMiddleware, RemoteUserMiddleware};

// Login required middleware (available with any middleware feature)
#[cfg(all(any(feature = "standard", feature = "middleware"), native))]
pub use reinhardt_middleware::{LoginRequiredConfig, LoginRequiredMiddleware};

#[cfg(all(any(feature = "standard", feature = "middleware"), native))]
pub use reinhardt_middleware::LoggingMiddleware;

#[cfg(all(feature = "middleware-cors", native))]
pub use reinhardt_middleware::CorsMiddleware;

// Security middleware (requires middleware-security feature)
#[cfg(all(feature = "middleware-security", native))]
pub use reinhardt_middleware::SecurityMiddleware;

#[cfg(all(feature = "middleware-security", native))]
#[allow(deprecated)] // SecurityConfig is deprecated but still re-exported for compatibility
pub use reinhardt_middleware::SecurityConfig;

// CSP middleware (available with any middleware feature)
#[cfg(all(any(feature = "standard", feature = "middleware"), native))]
pub use reinhardt_middleware::{CspConfig, CspMiddleware, CspNonce};

// XFrame middleware (available with any middleware feature)
#[cfg(all(any(feature = "standard", feature = "middleware"), native))]
pub use reinhardt_middleware::{XFrameOptions, XFrameOptionsMiddleware};

// Re-export HTTP types (additional commonly used types)
#[cfg(all(feature = "core", native))]
pub use reinhardt_http::Extensions;

// Re-export HTTP types from hyper (already used in reinhardt_http)
#[cfg(native)]
pub use hyper::{Method, StatusCode};

// Re-export pagination
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::pagination::{
	CursorPagination, LimitOffsetPagination, PageNumberPagination, PaginatedResponse, Paginator,
};

// Re-export filters
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::filters::{
	FieldOrderingExt, FilterBackend, FilterError, FilterResult, MultiTermSearch,
};

// Re-export throttling
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::throttling::{
	AnonRateThrottle, ScopedRateThrottle, Throttle, UserRateThrottle,
};

// Re-export signals
#[cfg(all(feature = "core", native))]
pub use reinhardt_core::signals::{
	M2MAction, M2MChangeEvent, Signal, m2m_changed, post_delete, post_save, pre_delete, pre_save,
};

// Re-export core utilities
// Note: reinhardt_types provides Handler, Middleware, etc. which are already re-exported via reinhardt_apps

// Re-export validators
#[cfg(all(feature = "core", native))]
pub use reinhardt_core::validators::{
	CreditCardValidator, EmailValidator, IBANValidator, IPAddressValidator, PhoneNumberValidator,
	UrlValidator, Validate, ValidationError as ValidatorError, ValidationErrors, ValidationResult,
	Validator,
};

// Re-export views
#[cfg(native)]
pub use reinhardt_views::{
	Context, DetailView, ListView, MultipleObjectMixin, SingleObjectMixin, View,
};

// Re-export parsers
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::parsers::{
	FileUploadParser, FormParser, JSONParser, MediaType, MultiPartParser, ParseError, ParseResult,
	Parser,
};

// Re-export versioning
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::versioning::{
	AcceptHeaderVersioning, BaseVersioning, HostNameVersioning, NamespaceVersioning,
	QueryParameterVersioning, RequestVersionExt, URLPathVersioning, VersioningError,
	VersioningMiddleware,
};

// Re-export metadata
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::metadata::{
	ActionMetadata, BaseMetadata, ChoiceInfo, FieldInfo, FieldInfoBuilder, FieldType,
	MetadataOptions, MetadataResponse, SimpleMetadata,
};

// Re-export negotiation
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::negotiation::*;

// Re-export REST integration modules
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::{
	filters, metadata, negotiation, pagination, parsers, serializers, throttling, versioning,
};

// Re-export browsable API (from reinhardt-browsable-api via reinhardt-rest)
#[cfg(all(feature = "rest", native))]
pub use reinhardt_rest::browsable_api;

// Re-export OpenAPI types
//
// # Availability
//
// Requires `openapi` feature.
//
// # Examples
//
// ```rust,no_run
// # // Note: This example requires the openapi feature
// // use reinhardt::{OpenApi, ApiDoc};
// //
// // // Define API documentation
// // #[derive(OpenApi)]
// // #[openapi(paths(get_users, create_user))]
// // struct ApiDoc;
// //
// // // Generate OpenAPI schema
// // let openapi = ApiDoc::openapi();
// // let json = serde_json::to_string_pretty(&openapi)?;
// ```
#[cfg(all(feature = "openapi", native))]
pub use reinhardt_rest::openapi::*;

// Re-export OpenApiRouter (requires openapi-router feature)
#[cfg(all(feature = "openapi-router", native))]
pub use reinhardt_openapi::OpenApiRouter;

// Re-export shortcuts (Django-style convenience functions)
#[cfg(all(feature = "shortcuts", native))]
pub use reinhardt_shortcuts::{redirect, render_html, render_json, render_text};
// ORM-integrated shortcuts require database feature
#[cfg(all(feature = "shortcuts", feature = "database", native))]
pub use reinhardt_shortcuts::{get_list_or_404, get_object_or_404};

// Re-export URL utilities
#[cfg(native)]
pub use reinhardt_urls::routers::{
	UrlPattern, UrlPatternWithParams, UrlReverser, include_routes as include, path, re_path,
	reverse,
};

// Admin functionality is available through reinhardt-admin-api crate
// See reinhardt-admin-types for type definitions

// Re-export database related (database feature)
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::contenttypes::{
	CONTENT_TYPE_REGISTRY, ContentType, ContentTypeRegistry, GenericForeignKey, GenericRelatable,
	GenericRelationQuery, ModelType,
};
#[cfg(all(feature = "database", native))]
pub use reinhardt_db::migrations::{
	FieldState, Migration, MigrationAutodetector, MigrationError, MigrationPlan, MigrationRecorder,
	ModelState, ProjectState,
};

// Re-export cache (cache feature)
#[cfg(all(feature = "cache", native))]
pub use reinhardt_utils::cache::{Cache, CacheKeyBuilder, InMemoryCache};

// Cache middleware is in reinhardt-middleware
#[cfg(all(feature = "middleware", native))]
pub use reinhardt_middleware::CacheMiddleware;

#[cfg(all(feature = "cache", feature = "redis-backend", native))]
pub use reinhardt_utils::cache::RedisCache;

// Re-export sessions (sessions feature)
#[cfg(all(feature = "sessions", native))]
pub use reinhardt_auth::sessions::{
	CacheSessionBackend, InMemorySessionBackend, Session, SessionBackend, SessionError,
};

#[cfg(all(feature = "sessions", feature = "middleware", native))]
pub use reinhardt_auth::sessions::{HttpSessionConfig, SameSite, SessionMiddleware};

// Re-export contrib modules (contrib feature)
// Note: reinhardt_contrib exports individual modules (auth, sessions, etc.)
// rather than a single "contrib" module

// Re-export forms (forms feature)
#[cfg(all(feature = "forms", native))]
pub use reinhardt_forms::{
	BoundField, CharField, EmailField, FieldError, FileField, Form, FormError, FormResult,
	IntegerField, ModelForm,
};

// Re-export DI and parameters (FastAPI-style parameter extraction)
#[cfg(all(feature = "di", native))]
#[allow(deprecated)]
pub use reinhardt_di::injected::{Injected, OptionalInjected};
#[cfg(all(feature = "di", native))]
pub use reinhardt_di::scope::{RequestScope, Scope, SingletonScope};
#[cfg(all(feature = "di", native))]
pub use reinhardt_di::{
	Depends, DependsBuilder, DiError, DiResult, Injectable, InjectionContext,
	InjectionContextBuilder, InjectionMetadata, RequestContext,
};

// Re-export DI params - available in minimal, standard, and di features
#[cfg(all(any(feature = "minimal", feature = "standard", feature = "di"), native))]
pub use reinhardt_di::params::{Body, Cookie, Header, Json, Path, Query};

// Re-export template/rendering functionality from reinhardt-pages
// Note: TemplateError was removed as Tera templating was replaced with reinhardt-pages SSR

// Re-export tasks
#[cfg(all(feature = "tasks", native))]
pub use reinhardt_tasks::{Scheduler, Task, TaskExecutor, TaskQueue};

// Re-export test utilities
#[cfg(all(feature = "test", native))]
pub use reinhardt_test::{APIClient, APIRequestFactory, APITestCase, TestResponse};

// Re-export storage
#[cfg(all(feature = "storage", native))]
pub use reinhardt_utils::storage::{InMemoryStorage, LocalStorage, Storage};

/// Wasm-side `prelude` shim (Issue #4189).
///
/// The native `prelude` module is `#[cfg(native)]`-gated, but the
/// `--with-pages` scaffold emits `use reinhardt::prelude::*;` in the
/// generated `src/config/urls.rs`, which must compile on
/// `wasm32-unknown-unknown` so wasm SPA consumers can `cargo check --lib`
/// without modifying the scaffolded sources.
///
/// This wasm-only stub re-exports the minimum surface the scaffold uses
/// (`UnifiedRouter` from the wasm-side `urls::prelude` shim, gated behind
/// the `client-router` feature; the module is empty when that feature is
/// disabled). Native builds keep using the full server-side `prelude`
/// declared below.
#[cfg(all(not(native), target_family = "wasm"))]
pub mod prelude {
	#[cfg(feature = "client-router")]
	pub use crate::urls::prelude::UnifiedRouter;
}

/// Convenience re-exports of commonly used types (server-side only).
#[cfg(native)]
pub mod prelude {
	// Core types - always available
	pub use crate::{
		Action,
		DefaultRouter,
		DetailView,
		ListView,
		ModelViewSet,
		MultipleObjectMixin,
		ReadOnlyModelViewSet,
		Route,
		Router,
		ServerRouter,
		SingleObjectMixin,
		StatusCode,
		View,
		ViewSet,
		// Routers
		clear_router,
		get_router,
		is_router_registered,
		register_router,
	};

	// ViewResult requires core feature (re-exported from reinhardt_http)
	#[cfg(feature = "core")]
	pub use crate::ViewResult;

	// UnifiedRouter requires client-router feature
	#[cfg(feature = "client-router")]
	pub use crate::UnifiedRouter;

	// External dependencies (via core)
	#[cfg(feature = "core")]
	pub use crate::core::async_trait;
	#[cfg(feature = "core")]
	pub use crate::core::serde::{Deserialize, Serialize};

	// Core feature - types, signals, etc.
	#[cfg(feature = "core")]
	pub use crate::{
		Error, Handler, Middleware, MiddlewareChain, Request, Response, Result, Signal,
		m2m_changed, post_delete, post_save, pre_delete, pre_save,
	};

	// HTTP method macros - always available
	pub use crate::{api_view, delete, get, patch, post, put};

	// Database feature - ORM and Model macros
	#[cfg(feature = "database")]
	pub use crate::{
		Aggregate,
		// Annotations and aggregations
		Annotation,
		CheckConstraint,
		// Common database functions
		Concat,
		CurrentDate,
		DatabaseConnection,
		DenseRank,
		// Query expressions (Django-style F/Q objects)
		F,
		ForeignKeyConstraint,
		Lower,
		Now,
		Q,
		QOperator,
		Rank,
		RowNumber,
		SoftDeletable,
		Timestamped,
		// Transaction management
		Transaction,
		// Constraints
		UniqueConstraint,
		Upper,
		// Window functions (commonly used)
		Window,
		atomic,
		// Model attribute macro for struct-level model definition
		model,
	};

	// Import Model trait directly from reinhardt_db to avoid name shadowing
	// (crate::Model refers to the derive macro, not the trait)
	#[cfg(feature = "database")]
	pub use reinhardt_db::orm::Model;

	// Auth feature
	#[cfg(feature = "auth")]
	pub use crate::{
		AuthBackend,
		Group,
		GroupManager,
		// Object-level permissions
		ObjectPermission,
		ObjectPermissionChecker,
		PasswordHasher,
		Permission,
		SimpleUser,
		// User and group management
		UserManager,
	};

	// OpenAPI feature - schema generation and documentation
	// Note: When 'openapi' feature is enabled, types are available at top level
	// Example: use reinhardt::prelude::*; or use reinhardt::{OpenApi, ApiDoc, Schema};

	// DI params - FastAPI-style parameter extraction
	#[cfg(any(feature = "minimal", feature = "standard", feature = "di"))]
	pub use crate::{Body, Cookie, Header, Json, Path, Query};

	// REST feature - serializers, parsers, pagination, throttling, versioning, metadata
	#[cfg(feature = "rest")]
	pub use crate::{
		// Versioning
		AcceptHeaderVersioning,
		// Throttling
		AnonRateThrottle,
		CursorPagination,
		FormParser,
		// Parsers
		JSONParser,
		JsonSerializer,
		LimitOffsetPagination,
		MultiPartParser,
		// Filters
		MultiTermSearch,
		// Pagination
		PageNumberPagination,
		Paginator,
		Parser,
		QueryParameterVersioning,
		ScopedRateThrottle,
		// Serializers
		Serializer,
		// Metadata
		SimpleMetadata,
		Throttle,
		URLPathVersioning,
		UserRateThrottle,
		VersioningMiddleware,
	};

	// Settings feature
	#[cfg(feature = "conf")]
	#[allow(deprecated)] // Re-exports deprecated Settings for backward compatibility
	pub use crate::Settings;

	// Middleware
	#[cfg(any(feature = "standard", feature = "middleware"))]
	pub use crate::LoggingMiddleware;

	// Security middleware
	#[cfg(feature = "middleware-security")]
	pub use crate::SecurityMiddleware;

	// Sessions feature
	#[cfg(all(feature = "sessions", feature = "middleware", native))]
	pub use crate::AuthenticationMiddleware;
	#[cfg(feature = "sessions")]
	pub use crate::Session;

	// Cache feature
	#[cfg(feature = "cache")]
	pub use crate::{Cache, InMemoryCache};

	// Admin feature - use reinhardt-admin-api crate directly for admin functionality
}

// Re-export WebSocket types
#[cfg(all(feature = "websockets-pages", native))]
pub use reinhardt_websockets::integration::pages::PagesAuthenticator;
#[cfg(all(feature = "websockets", native))]
pub use reinhardt_websockets::room::{BroadcastResult, Room, RoomError, RoomManager, RoomResult};
#[cfg(all(feature = "websockets", native))]
pub use reinhardt_websockets::{
	ConsumerContext, Message, WebSocketConnection, WebSocketConsumer, WebSocketError,
	WebSocketResult,
};
#[cfg(all(feature = "websockets", native))]
pub use reinhardt_websockets::{
	RouteError, RouteResult, WebSocketRoute, WebSocketRouter, clear_websocket_router,
	get_websocket_router, register_websocket_router, reverse_websocket_url,
};

/// WASM shim for `WebSocketRouter` (Issue #4161).
///
/// `#[url_patterns(.., mode = ws)]` expansions call `.with_namespace(...)`
/// on the function's return value, and the function's return type
/// references `WebSocketRouter`. The real type lives in
/// `reinhardt-websockets`, which depends on `tokio-tungstenite` and is
/// native-only. This stub matches the surface the macro emits and the
/// user-facing imports (`use reinhardt::WebSocketRouter`) so that wasm
/// consumers compile, including the typical
/// `WebSocketRouter::new().consumer(my_ws).consumer(other_ws)` body
/// pattern.
#[cfg(not(native))]
pub struct WebSocketRouter {
	_private: (),
}

#[cfg(not(native))]
impl WebSocketRouter {
	pub fn new() -> Self {
		Self { _private: () }
	}

	pub fn with_namespace(self, _namespace: impl Into<String>) -> Self {
		self
	}

	/// Inert wasm counterpart of `WebSocketRouter::consumer`.
	///
	/// The native variant requires `C: WebSocketEndpointInfo`, but that
	/// trait lives behind `#[cfg(native)]` in `reinhardt-core::ws`. To
	/// keep `#[url_patterns(.., mode = ws)]` user bodies such as
	/// `.consumer(chat_ws)` compiling on wasm, this stub accepts any
	/// factory `Fn() -> C` with no further bounds and discards it.
	pub fn consumer<C, F>(self, _f: F) -> Self
	where
		F: Fn() -> C,
	{
		self
	}
}

#[cfg(not(native))]
impl Default for WebSocketRouter {
	fn default() -> Self {
		Self::new()
	}
}

/// SQL query builder module.
///
/// Re-exports [`reinhardt_query`] for building type-safe SQL queries.
/// Requires `database` feature.
#[cfg(all(feature = "database", native))]
pub mod query;

/// Database re-exports for Model derive macro generated code.
///
/// These must be available at `::reinhardt::db::*` for the macro to work correctly.
#[cfg(all(feature = "database", native))]
pub mod db {
	// Re-export commonly used types at module level for easier access
	pub use reinhardt_db::DatabaseConnection;
	pub use reinhardt_db::DatabaseError as Error;

	/// Database migration types and utilities.
	pub mod migrations {
		pub use reinhardt_db::migrations::*;
	}

	/// ORM query building and model operations.
	pub mod orm {
		pub use reinhardt_db::orm::*;
	}

	/// Model relationship (association) definitions.
	pub mod associations {
		pub use reinhardt_db::associations::*;
	}

	/// Convenience re-exports for database operations.
	pub mod prelude {
		pub use reinhardt_db::prelude::*;
	}
}