Merges in-progress manifest/plist changes (stashed before merge). Resolves trivial comment conflicts in api_endpoints.dart and auth_service.dart — both retained backend.eventifyplus.com URL and Google OAuth serverClientId. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
70 lines
3.7 KiB
Dart
70 lines
3.7 KiB
Dart
// lib/core/api/api_endpoints.dart
|
|
class ApiEndpoints {
|
|
// Change this to your desired backend base URL (local or UAT)
|
|
// For local Django dev use: "http://127.0.0.1:8000/api"
|
|
// em.eventifyplus.com / uat.eventifyplus.com DNS → K8s, broken TLS. backend.eventifyplus.com → EC2 174.129.72.160, valid cert.
|
|
static const String baseUrl = "https://backend.eventifyplus.com/api";
|
|
|
|
/// Base URL for media files (images, icons uploaded via Django admin).
|
|
/// Relative paths like `/media/...` are resolved against this.
|
|
static const String mediaBaseUrl = "https://backend.eventifyplus.com";
|
|
|
|
// Auth
|
|
static const String register = "$baseUrl/user/register/";
|
|
static const String login = "$baseUrl/user/login/";
|
|
static const String logout = "$baseUrl/user/logout/";
|
|
static const String status = "$baseUrl/user/status/";
|
|
static const String updateProfile = "$baseUrl/user/update-profile/";
|
|
static const String forgotPassword = "$baseUrl/user/forgot-password/";
|
|
|
|
// Events
|
|
static const String eventTypes = "$baseUrl/events/type-list/"; // list of event types
|
|
static const String eventsByPincode = "$baseUrl/events/pincode-events/"; // pincode-events
|
|
static const String eventDetails = "$baseUrl/events/event-details/"; // event-details
|
|
static const String eventImages = "$baseUrl/events/event-images/"; // event-images
|
|
static const String eventsByCategory = "$baseUrl/events/events-by-category/";
|
|
static const String eventsByMonth = "$baseUrl/events/events-by-month-year/";
|
|
static const String featuredEvents = "$baseUrl/events/featured-events/";
|
|
static const String topEvents = "$baseUrl/events/top-events/";
|
|
|
|
// Bookings
|
|
// static const String bookEvent = "$baseUrl/events/book-event/";
|
|
// static const String userSuccessBookings = "$baseUrl/events/event/user-success-bookings/";
|
|
// static const String userCancelledBookings = "$baseUrl/events/event/user-cancelled-bookings/";
|
|
|
|
// Reviews (served by Node.js backend via app.eventifyplus.com)
|
|
static const String _reviewBase = "https://app.eventifyplus.com/api/reviews";
|
|
static const String reviewSubmit = "$_reviewBase/submit";
|
|
static const String reviewList = "$_reviewBase/list";
|
|
static const String reviewHelpful = "$_reviewBase/helpful";
|
|
static const String reviewFlag = "$_reviewBase/flag";
|
|
|
|
// Node.js gamification server (same host as reviews)
|
|
static const String _nodeBase = "https://app.eventifyplus.com/api";
|
|
|
|
// File upload (Node.js — routes to OneDrive or GDrive via STORAGE_BACKEND env)
|
|
static const String uploadFile = "$_nodeBase/v1/upload/file";
|
|
|
|
// Gamification / Contributor Module
|
|
static const String gamificationDashboard = "$_nodeBase/v1/gamification/dashboard";
|
|
static const String leaderboard = "$_nodeBase/v1/gamification/leaderboard";
|
|
static const String shopItems = "$_nodeBase/v1/shop/items";
|
|
static const String shopRedeem = "$_nodeBase/v1/shop/redeem";
|
|
static const String contributeSubmit = "$_nodeBase/v1/gamification/submit-event";
|
|
static const String gradeContribution = "$_nodeBase/v1/admin/contributions/"; // append {id}/grade/
|
|
|
|
// Bookings
|
|
static const String ticketMetaList = "$baseUrl/bookings/ticket-meta/list/";
|
|
static const String cartAdd = "$baseUrl/bookings/cart/add/";
|
|
static const String checkout = "$baseUrl/bookings/checkout/";
|
|
static const String checkIn = "$baseUrl/bookings/check-in/";
|
|
|
|
// Auth - Google OAuth
|
|
static const String googleLogin = "$baseUrl/user/google-login/";
|
|
|
|
// Notifications
|
|
static const String notificationList = "$baseUrl/notifications/list/";
|
|
static const String notificationMarkRead = "$baseUrl/notifications/mark-read/";
|
|
static const String notificationCount = "$baseUrl/notifications/count";
|
|
}
|