mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-11 00:47:23 +02:00
97 lines
4.6 KiB
C++
97 lines
4.6 KiB
C++
//
|
|
// NetworkingConstants.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by Stephen Birarda on 2015-03-31.
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
// Copyright 2020 Vircadia contributors.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_NetworkingConstants_h
|
|
#define hifi_NetworkingConstants_h
|
|
|
|
#include <QtCore/QProcessEnvironment>
|
|
#include <QtCore/QUrl>
|
|
|
|
namespace NetworkingConstants {
|
|
// If you want to use STAGING instead of STABLE,
|
|
// links from the Domain Server web interface (like the connect account token generation)
|
|
// will still point at stable unless you ALSO change the Domain Server Metaverse Server URL inside of:
|
|
// <vircadia repo>\domain-server\resources\web\js\shared.js
|
|
|
|
// You can avoid changing that and still effectively use a connected domain on staging
|
|
// if you manually generate a personal access token for the domains scope
|
|
// at https://staging.highfidelity.com/user/tokens/new?for_domain_server=true
|
|
|
|
const QString WEB_ENGINE_VERSION = "Chrome/83.0.4103.122";
|
|
|
|
// For now we only have one Metaverse server.
|
|
const QUrl METAVERSE_SERVER_URL_STABLE { "https://metaverse.vircadia.com/live" };
|
|
const QUrl METAVERSE_SERVER_URL_STAGING { "https://metaverse.vircadia.com/live" };
|
|
|
|
// Web Engine requests to this parent domain have an account authorization header added
|
|
const QString AUTH_HOSTNAME_BASE = "vircadia.com";
|
|
const QStringList IS_AUTHABLE_HOSTNAME = { "vircadia.com", "vircadia.io" };
|
|
|
|
// Use a custom User-Agent to avoid ModSecurity filtering, e.g. by hosting providers.
|
|
const QByteArray VIRCADIA_USER_AGENT = "Mozilla/5.0 (VircadiaInterface)";
|
|
|
|
const QString WEB_ENGINE_USER_AGENT = "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) " + WEB_ENGINE_VERSION + " Mobile Safari/537.36";
|
|
const QString MOBILE_USER_AGENT = "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) " + WEB_ENGINE_VERSION + " Mobile Safari/537.36";
|
|
|
|
// WebEntity Defaults
|
|
const QString WEB_ENTITY_DEFAULT_SOURCE_URL = "https://vircadia.com/";
|
|
const QString WEB_ENTITY_DEFAULT_USER_AGENT = WEB_ENGINE_USER_AGENT;
|
|
|
|
// Builds URLs
|
|
const QUrl BUILDS_XML_URL("https://highfidelity.com/builds.xml");
|
|
const QUrl MASTER_BUILDS_XML_URL("https://highfidelity.com/dev-builds.xml");
|
|
|
|
const QString DEFAULT_AVATAR_COLLISION_SOUND_URL = "https://hifi-public.s3.amazonaws.com/sounds/Collisions-otherorganic/Body_Hits_Impact.wav";
|
|
|
|
// CDN URLs
|
|
const QString HF_CONTENT_CDN_URL = "https://cdn-1.vircadia.com/eu-c-1/vircadia-content/";
|
|
const QString HF_MPASSETS_CDN_URL = "https://cdn-1.vircadia.com/eu-c-1/vircadia-mpassets/";
|
|
const QString HF_PUBLIC_CDN_URL = "https://cdn-1.vircadia.com/eu-c-1/vircadia-public/";
|
|
const QString HF_MARKETPLACE_CDN_HOSTNAME = "mpassets.highfidelity.com";
|
|
const QString VIRCADIA_CONTENT_CDN_URL = "https://cdn-1.vircadia.com/us-e-1/";
|
|
|
|
#if USE_STABLE_GLOBAL_SERVICES
|
|
const QString ICE_SERVER_DEFAULT_HOSTNAME = "ice.vircadia.com";
|
|
|
|
const QString STUN_SERVER_DEFAULT_HOSTNAME = "stun1.l.google.com";
|
|
const unsigned short STUN_SERVER_DEFAULT_PORT = 19302;
|
|
#else
|
|
const QString ICE_SERVER_DEFAULT_HOSTNAME = "ice.vircadia.com";
|
|
|
|
const QString STUN_SERVER_DEFAULT_HOSTNAME = "stun2.l.google.com";
|
|
const unsigned short STUN_SERVER_DEFAULT_PORT = 19302;
|
|
#endif
|
|
|
|
const QUrl HELP_COMMUNITY_URL{ "https://vircadia.com/#community" };
|
|
const QUrl HELP_DOCS_URL{ "https://docs.vircadia.com" };
|
|
const QUrl HELP_FORUM_URL{ "https://forum.vircadia.com" };
|
|
const QUrl HELP_SCRIPTING_REFERENCE_URL{ "https://apidocs.vircadia.dev/" };
|
|
const QUrl HELP_RELEASE_NOTES_URL{ "https://docs.vircadia.com/release-notes.html" };
|
|
const QUrl HELP_BUG_REPORT_URL{ "https://github.com/vircadia/vircadia/issues" };
|
|
|
|
const QString DEFAULT_VIRCADIA_ADDRESS = "file:///~/serverless/tutorial.json";
|
|
const QString DEFAULT_HOME_ADDRESS = "file:///~/serverless/tutorial.json";
|
|
const QString REDIRECT_HIFI_ADDRESS = "file:///~/serverless/redirect.json";
|
|
}
|
|
|
|
const QString HIFI_URL_SCHEME_ABOUT = "about";
|
|
const QString URL_SCHEME_VIRCADIA = "hifi";
|
|
const QString URL_SCHEME_VIRCADIAAPP = "hifiapp";
|
|
const QString URL_SCHEME_DATA = "data";
|
|
const QString URL_SCHEME_QRC = "qrc";
|
|
const QString HIFI_URL_SCHEME_FILE = "file";
|
|
const QString HIFI_URL_SCHEME_HTTP = "http";
|
|
const QString HIFI_URL_SCHEME_HTTPS = "https";
|
|
const QString HIFI_URL_SCHEME_FTP = "ftp";
|
|
const QString URL_SCHEME_ATP = "atp";
|
|
|
|
#endif // hifi_NetworkingConstants_h
|