constants.py 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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 package.
  9. MODULE_NAME = "pynecone"
  10. # The current version of Pynecone.
  11. VERSION = pkg_resources.get_distribution(MODULE_NAME).version
  12. # Minimum version of Node.js required to run Pynecone.
  13. MIN_NODE_VERSION = "16.8.0"
  14. # Valid bun versions.
  15. MIN_BUN_VERSION = "0.5.9"
  16. MAX_BUN_VERSION = "0.6.1"
  17. # Files and directories used to init a new project.
  18. # The root directory of the pynecone library.
  19. ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
  20. # The name of the assets directory.
  21. APP_ASSETS_DIR = "assets"
  22. # The template directory used during pc init.
  23. TEMPLATE_DIR = os.path.join(ROOT_DIR, MODULE_NAME, ".templates")
  24. # The web subdirectory of the template directory.
  25. WEB_TEMPLATE_DIR = os.path.join(TEMPLATE_DIR, "web")
  26. # The assets subdirectory of the template directory.
  27. ASSETS_TEMPLATE_DIR = os.path.join(TEMPLATE_DIR, APP_ASSETS_DIR)
  28. # The jinja template directory.
  29. JINJA_TEMPLATE_DIR = os.path.join(TEMPLATE_DIR, "jinja")
  30. # The frontend directories in a project.
  31. # The web folder where the NextJS app is compiled to.
  32. WEB_DIR = ".web"
  33. # The name of the utils file.
  34. UTILS_DIR = "utils"
  35. # The name of the state file.
  36. STATE_PATH = "/".join([UTILS_DIR, "state"])
  37. # The name of the components file.
  38. COMPONENTS_PATH = "/".join([UTILS_DIR, "components"])
  39. # The directory where the app pages are compiled to.
  40. WEB_PAGES_DIR = os.path.join(WEB_DIR, "pages")
  41. # The directory where the static build is located.
  42. WEB_STATIC_DIR = os.path.join(WEB_DIR, "_static")
  43. # The directory where the utils file is located.
  44. WEB_UTILS_DIR = os.path.join(WEB_DIR, UTILS_DIR)
  45. # The directory where the assets are located.
  46. WEB_ASSETS_DIR = os.path.join(WEB_DIR, "public")
  47. # The sitemap config file.
  48. SITEMAP_CONFIG_FILE = os.path.join(WEB_DIR, "next-sitemap.config.js")
  49. # The node modules directory.
  50. NODE_MODULES = "node_modules"
  51. # The package lock file.
  52. PACKAGE_LOCK = "package-lock.json"
  53. # The pcversion app file.
  54. PCVERSION_APP_FILE = os.path.join(WEB_DIR, "pynecone.json")
  55. ENV_JSON = os.path.join(WEB_DIR, "env.json")
  56. # Commands to run the app.
  57. # The frontend default port.
  58. FRONTEND_PORT = "3000"
  59. # The backend default port.
  60. BACKEND_PORT = "8000"
  61. # The backend api url.
  62. API_URL = "http://localhost:8000"
  63. # bun root location
  64. BUN_ROOT_PATH = "$HOME/.bun"
  65. # The default path where bun is installed.
  66. BUN_PATH = f"{BUN_ROOT_PATH}/bin/bun"
  67. # Command to install bun.
  68. INSTALL_BUN = f"curl -fsSL https://bun.sh/install | bash -s -- bun-v{MAX_BUN_VERSION}"
  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 = 120
  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 is_hydrated variable.
  103. IS_HYDRATED = "is_hydrated"
  104. # The name of the index page.
  105. INDEX_ROUTE = "index"
  106. # The name of the document root page.
  107. DOCUMENT_ROOT = "_document"
  108. # The name of the theme page.
  109. THEME = "theme"
  110. # The prefix used to create setters for state vars.
  111. SETTER_PREFIX = "set_"
  112. # The name of the frontend zip during deployment.
  113. FRONTEND_ZIP = "frontend.zip"
  114. # The name of the backend zip during deployment.
  115. BACKEND_ZIP = "backend.zip"
  116. # The name of the sqlite database.
  117. DB_NAME = "pynecone.db"
  118. # The sqlite url.
  119. DB_URL = f"sqlite:///{DB_NAME}"
  120. # The default title to show for Pynecone apps.
  121. DEFAULT_TITLE = "Pynecone App"
  122. # The default description to show for Pynecone apps.
  123. DEFAULT_DESCRIPTION = "A Pynecone app."
  124. # The default image to show for Pynecone apps.
  125. DEFAULT_IMAGE = "favicon.ico"
  126. # The default meta list to show for Pynecone apps.
  127. DEFAULT_META_LIST = []
  128. # The gitignore file.
  129. GITIGNORE_FILE = ".gitignore"
  130. # Files to gitignore.
  131. DEFAULT_GITIGNORE = {WEB_DIR, DB_NAME, "__pycache__/", "*.py[cod]"}
  132. # The name of the pynecone config module.
  133. CONFIG_MODULE = "pcconfig"
  134. # The python config file.
  135. CONFIG_FILE = f"{CONFIG_MODULE}{PY_EXT}"
  136. # The deployment URL.
  137. PRODUCTION_BACKEND_URL = "https://{username}-{app_name}.api.pynecone.app"
  138. # Token expiration time in seconds.
  139. TOKEN_EXPIRATION = 60 * 60
  140. # Env modes
  141. class Env(str, Enum):
  142. """The environment modes."""
  143. DEV = "dev"
  144. PROD = "prod"
  145. # Log levels
  146. class LogLevel(str, Enum):
  147. """The log levels."""
  148. DEBUG = "debug"
  149. INFO = "info"
  150. WARNING = "warning"
  151. ERROR = "error"
  152. CRITICAL = "critical"
  153. # Templates
  154. class Template(str, Enum):
  155. """The templates to use for the app."""
  156. DEFAULT = "default"
  157. COUNTER = "counter"
  158. class Endpoint(Enum):
  159. """Endpoints for the pynecone backend API."""
  160. PING = "ping"
  161. EVENT = "event"
  162. UPLOAD = "upload"
  163. def __str__(self) -> str:
  164. """Get the string representation of the endpoint.
  165. Returns:
  166. The path for the endpoint.
  167. """
  168. return f"/{self.value}"
  169. def get_url(self) -> str:
  170. """Get the URL for the endpoint.
  171. Returns:
  172. The full URL for the endpoint.
  173. """
  174. # Import here to avoid circular imports.
  175. from pynecone.config import get_config
  176. # Get the API URL from the config.
  177. config = get_config()
  178. url = "".join([config.api_url, str(self)])
  179. # The event endpoint is a websocket.
  180. if self == Endpoint.EVENT:
  181. # Replace the protocol with ws.
  182. url = url.replace("https://", "wss://").replace("http://", "ws://")
  183. # Return the url.
  184. return url
  185. class SocketEvent(Enum):
  186. """Socket events sent by the pynecone backend API."""
  187. PING = "ping"
  188. EVENT = "event"
  189. def __str__(self) -> str:
  190. """Get the string representation of the event name.
  191. Returns:
  192. The event name string.
  193. """
  194. return str(self.value)
  195. class Transports(Enum):
  196. """Socket transports used by the pynecone backend API."""
  197. POLLING_WEBSOCKET = "['polling', 'websocket']"
  198. WEBSOCKET_POLLING = "['websocket', 'polling']"
  199. WEBSOCKET_ONLY = "['websocket']"
  200. POLLING_ONLY = "['polling']"
  201. def __str__(self) -> str:
  202. """Get the string representation of the transports.
  203. Returns:
  204. The transports string.
  205. """
  206. return str(self.value)
  207. def get_transports(self) -> str:
  208. """Get the transports config for the backend.
  209. Returns:
  210. The transports config for the backend.
  211. """
  212. # Import here to avoid circular imports.
  213. from pynecone.config import get_config
  214. # Get the API URL from the config.
  215. config = get_config()
  216. return str(config.backend_transports)
  217. class RouteArgType(SimpleNamespace):
  218. """Type of dynamic route arg extracted from URI route."""
  219. # Typecast to str is needed for Enum to work.
  220. SINGLE = str("arg_single")
  221. LIST = str("arg_list")
  222. # the name of the backend var containing path and client information
  223. ROUTER_DATA = "router_data"
  224. class RouteVar(SimpleNamespace):
  225. """Names of variables used in the router_data dict stored in State."""
  226. CLIENT_IP = "ip"
  227. CLIENT_TOKEN = "token"
  228. HEADERS = "headers"
  229. PATH = "pathname"
  230. SESSION_ID = "sid"
  231. QUERY = "query"
  232. class RouteRegex(SimpleNamespace):
  233. """Regex used for extracting route args in route."""
  234. ARG = re.compile(r"\[(?!\.)([^\[\]]+)\]")
  235. # group return the catchall pattern (i.e. "[[..slug]]")
  236. CATCHALL = re.compile(r"(\[?\[\.{3}(?![0-9]).*\]?\])")
  237. # group return the arg name (i.e. "slug")
  238. STRICT_CATCHALL = re.compile(r"\[\.{3}([a-zA-Z_][\w]*)\]")
  239. # group return the arg name (i.e. "slug")
  240. OPT_CATCHALL = re.compile(r"\[\[\.{3}([a-zA-Z_][\w]*)\]\]")
  241. # 404 variables
  242. ROOT_404 = ""
  243. SLUG_404 = "[..._]"
  244. TITLE_404 = "404 - Not Found"
  245. FAVICON_404 = "favicon.ico"
  246. DESCRIPTION_404 = "The page was not found"
  247. # Color mode variables
  248. USE_COLOR_MODE = "useColorMode"
  249. COLOR_MODE = "colorMode"
  250. TOGGLE_COLOR_MODE = "toggleColorMode"
  251. # Server socket configuration variables
  252. CORS_ALLOWED_ORIGINS = "*"
  253. POLLING_MAX_HTTP_BUFFER_SIZE = 1000 * 1000