constants.py 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. """Constants used throughout the package."""
  2. import os
  3. import re
  4. from enum import Enum
  5. from types import SimpleNamespace
  6. import pkg_resources
  7. # App names and versions.
  8. # The name of the Pynecone module.
  9. MODULE_NAME = "pynecone"
  10. # The name of the pip install package.
  11. PACKAGE_NAME = "pynecone"
  12. # The current version of Pynecone.
  13. VERSION = pkg_resources.get_distribution(PACKAGE_NAME).version
  14. # Minimum version of Node.js required to run Pynecone.
  15. MIN_NODE_VERSION = "12.22.0"
  16. # Files and directories used to init a new project.
  17. # The root directory of the pynecone library.
  18. ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
  19. # The name of the file used for pc init.
  20. APP_TEMPLATE_FILE = "tutorial.py"
  21. # The name of the assets directory.
  22. APP_ASSETS_DIR = "assets"
  23. # The template directory used during pc init.
  24. TEMPLATE_DIR = os.path.join(ROOT_DIR, MODULE_NAME, ".templates")
  25. # The web subdirectory of the template directory.
  26. WEB_TEMPLATE_DIR = os.path.join(TEMPLATE_DIR, "web")
  27. # The app subdirectory of the template directory.
  28. APP_TEMPLATE_DIR = os.path.join(TEMPLATE_DIR, "app")
  29. # The assets subdirectory of the template directory.
  30. ASSETS_TEMPLATE_DIR = os.path.join(TEMPLATE_DIR, APP_ASSETS_DIR)
  31. # The frontend directories in a project.
  32. # The web folder where the NextJS app is compiled to.
  33. WEB_DIR = ".web"
  34. # The name of the utils file.
  35. UTILS_DIR = "utils"
  36. # The name of the state file.
  37. STATE_PATH = "/".join([UTILS_DIR, "state"])
  38. # The name of the components file.
  39. COMPONENTS_PATH = "/".join([UTILS_DIR, "components"])
  40. # The directory where the app pages are compiled to.
  41. WEB_PAGES_DIR = os.path.join(WEB_DIR, "pages")
  42. # The directory where the static build is located.
  43. WEB_STATIC_DIR = os.path.join(WEB_DIR, "_static")
  44. # The directory where the utils file is located.
  45. WEB_UTILS_DIR = os.path.join(WEB_DIR, UTILS_DIR)
  46. # The directory where the assets are located.
  47. WEB_ASSETS_DIR = os.path.join(WEB_DIR, "public")
  48. # The sitemap config file.
  49. SITEMAP_CONFIG_FILE = os.path.join(WEB_DIR, "next-sitemap.config.js")
  50. # The node modules directory.
  51. NODE_MODULES = "node_modules"
  52. # The package lock file.
  53. PACKAGE_LOCK = "package-lock.json"
  54. # The pcversion template file.
  55. PCVERSION_TEMPLATE_FILE = os.path.join(WEB_TEMPLATE_DIR, "pynecone.json")
  56. # The pcversion app file.
  57. PCVERSION_APP_FILE = os.path.join(WEB_DIR, "pynecone.json")
  58. # Commands to run the app.
  59. # The frontend default port.
  60. FRONTEND_PORT = "3000"
  61. # The backend default port.
  62. BACKEND_PORT = "8000"
  63. # The backend api url.
  64. API_URL = "http://localhost:8000"
  65. # The default path where bun is installed.
  66. BUN_PATH = "$HOME/.bun/bin/bun"
  67. # Command to install bun.
  68. INSTALL_BUN = "curl -fsSL https://bun.sh/install | bash -s -- bun-v0.5.5"
  69. # Default host in dev mode.
  70. BACKEND_HOST = "0.0.0.0"
  71. # The default timeout when launching the gunicorn server.
  72. TIMEOUT = 120
  73. # The command to run the backend in production mode.
  74. RUN_BACKEND_PROD = f"gunicorn --worker-class uvicorn.workers.UvicornH11Worker --preload --timeout {TIMEOUT} --log-level critical".split()
  75. RUN_BACKEND_PROD_WINDOWS = f"uvicorn --timeout-keep-alive {TIMEOUT}".split()
  76. # Socket.IO web server
  77. PING_INTERVAL = 25
  78. PING_TIMEOUT = 5
  79. # Compiler variables.
  80. # The extension for compiled Javascript files.
  81. JS_EXT = ".js"
  82. # The extension for python files.
  83. PY_EXT = ".py"
  84. # The expected variable name where the pc.App is stored.
  85. APP_VAR = "app"
  86. # The expected variable name where the API object is stored for deployment.
  87. API_VAR = "api"
  88. # The name of the router variable.
  89. ROUTER = "router"
  90. # The name of the socket variable.
  91. SOCKET = "socket"
  92. # The name of the variable to hold API results.
  93. RESULT = "result"
  94. # The name of the process variable.
  95. PROCESSING = "processing"
  96. # The name of the state variable.
  97. STATE = "state"
  98. # The name of the events variable.
  99. EVENTS = "events"
  100. # The name of the initial hydrate event.
  101. HYDRATE = "hydrate"
  102. # The name of the index page.
  103. INDEX_ROUTE = "index"
  104. # The name of the document root page.
  105. DOCUMENT_ROOT = "_document"
  106. # The name of the theme page.
  107. THEME = "theme"
  108. # The prefix used to create setters for state vars.
  109. SETTER_PREFIX = "set_"
  110. # The name of the frontend zip during deployment.
  111. FRONTEND_ZIP = "frontend.zip"
  112. # The name of the backend zip during deployment.
  113. BACKEND_ZIP = "backend.zip"
  114. # The name of the sqlite database.
  115. DB_NAME = "pynecone.db"
  116. # The sqlite url.
  117. DB_URL = f"sqlite:///{DB_NAME}"
  118. # The default title to show for Pynecone apps.
  119. DEFAULT_TITLE = "Pynecone App"
  120. # The default description to show for Pynecone apps.
  121. DEFAULT_DESCRIPTION = "A Pynecone app."
  122. # The default image to show for Pynecone apps.
  123. DEFAULT_IMAGE = "favicon.ico"
  124. # The default meta list to show for Pynecone apps.
  125. DEFAULT_META_LIST = []
  126. # The gitignore file.
  127. GITIGNORE_FILE = ".gitignore"
  128. # Files to gitignore.
  129. DEFAULT_GITIGNORE = {WEB_DIR, DB_NAME}
  130. # The name of the pynecone config module.
  131. CONFIG_MODULE = "pcconfig"
  132. # The python config file.
  133. CONFIG_FILE = f"{CONFIG_MODULE}{PY_EXT}"
  134. # The deployment URL.
  135. PRODUCTION_BACKEND_URL = "https://{username}-{app_name}.api.pynecone.app"
  136. # Token expiration time in seconds.
  137. TOKEN_EXPIRATION = 60 * 60
  138. # Env modes
  139. class Env(str, Enum):
  140. """The environment modes."""
  141. DEV = "dev"
  142. PROD = "prod"
  143. # Log levels
  144. class LogLevel(str, Enum):
  145. """The log levels."""
  146. DEBUG = "debug"
  147. INFO = "info"
  148. WARNING = "warning"
  149. ERROR = "error"
  150. CRITICAL = "critical"
  151. class Endpoint(Enum):
  152. """Endpoints for the pynecone backend API."""
  153. PING = "ping"
  154. EVENT = "event"
  155. UPLOAD = "upload"
  156. def __str__(self) -> str:
  157. """Get the string representation of the endpoint.
  158. Returns:
  159. The path for the endpoint.
  160. """
  161. return f"/{self.value}"
  162. def get_url(self) -> str:
  163. """Get the URL for the endpoint.
  164. Returns:
  165. The full URL for the endpoint.
  166. """
  167. # Import here to avoid circular imports.
  168. from pynecone.config import get_config
  169. # Get the API URL from the config.
  170. config = get_config()
  171. url = "".join([config.api_url, str(self)])
  172. # The event endpoint is a websocket.
  173. if self == Endpoint.EVENT:
  174. # Replace the protocol with ws.
  175. url = url.replace("https://", "wss://").replace("http://", "ws://")
  176. # Return the url.
  177. return url
  178. class SocketEvent(Enum):
  179. """Socket events sent by the pynecone backend API."""
  180. PING = "ping"
  181. EVENT = "event"
  182. def __str__(self) -> str:
  183. """Get the string representation of the event name.
  184. Returns:
  185. The event name string.
  186. """
  187. return str(self.value)
  188. class Transports(Enum):
  189. """Socket transports used by the pynecone backend API."""
  190. POLLING_WEBSOCKET = "['polling', 'websocket']"
  191. WEBSOCKET_POLLING = "['websocket', 'polling']"
  192. WEBSOCKET_ONLY = "['websocket']"
  193. POLLING_ONLY = "['polling']"
  194. def __str__(self) -> str:
  195. """Get the string representation of the transports.
  196. Returns:
  197. The transports string.
  198. """
  199. return str(self.value)
  200. def get_transports(self) -> str:
  201. """Get the transports config for the backend.
  202. Returns:
  203. The transports config for the backend.
  204. """
  205. # Import here to avoid circular imports.
  206. from pynecone.config import get_config
  207. # Get the API URL from the config.
  208. config = get_config()
  209. return str(config.backend_transports)
  210. class RouteArgType(SimpleNamespace):
  211. """Type of dynamic route arg extracted from URI route."""
  212. # Typecast to str is needed for Enum to work.
  213. SINGLE = str("arg_single")
  214. LIST = str("arg_list")
  215. class RouteVar(SimpleNamespace):
  216. """Names of variables used in the router_data dict stored in State."""
  217. CLIENT_IP = "ip"
  218. CLIENT_TOKEN = "token"
  219. HEADERS = "headers"
  220. PATH = "pathname"
  221. SESSION_ID = "sid"
  222. QUERY = "query"
  223. class RouteRegex(SimpleNamespace):
  224. """Regex used for extracting route args in route."""
  225. ARG = re.compile(r"\[(?!\.)([^\[\]]+)\]")
  226. # group return the catchall pattern (i.e. "[[..slug]]")
  227. CATCHALL = re.compile(r"(\[?\[\.{3}(?![0-9]).*\]?\])")
  228. # group return the arg name (i.e. "slug")
  229. STRICT_CATCHALL = re.compile(r"\[\.{3}([a-zA-Z_][\w]*)\]")
  230. # group return the arg name (i.e. "slug")
  231. OPT_CATCHALL = re.compile(r"\[\[\.{3}([a-zA-Z_][\w]*)\]\]")
  232. # 404 variables
  233. ROOT_404 = ""
  234. SLUG_404 = "[..._]"
  235. TITLE_404 = "404 - Not Found"
  236. FAVICON_404 = "favicon.ico"
  237. DESCRIPTION_404 = "The page was not found"
  238. # Color mode variables
  239. USE_COLOR_MODE = "useColorMode"
  240. COLOR_MODE = "colorMode"
  241. TOGGLE_COLOR_MODE = "toggleColorMode"
  242. # Server socket configuration variables
  243. CORS_ALLOWED_ORIGINS = "*"
  244. POLLING_MAX_HTTP_BUFFER_SIZE = 1000 * 1000