build.ts 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import tauriConfig from "../../src-tauri/tauri.conf.json";
  2. export const getBuildConfig = () => {
  3. if (typeof process === "undefined") {
  4. throw Error(
  5. "[Server Config] you are importing a nodejs-only module outside of nodejs",
  6. );
  7. }
  8. const buildMode = process.env.BUILD_MODE ?? "standalone";
  9. const isApp = !!process.env.BUILD_APP;
  10. const version = "v" + tauriConfig.package.version;
  11. const commitInfo = (() => {
  12. try {
  13. const childProcess = require("child_process");
  14. const commitDate: string = childProcess
  15. .execSync('git log -1 --format="%at000" --date=unix')
  16. .toString()
  17. .trim();
  18. const commitHash: string = childProcess
  19. .execSync('git log --pretty=format:"%H" -n 1')
  20. .toString()
  21. .trim();
  22. return { commitDate, commitHash };
  23. } catch (e) {
  24. console.error("[Build Config] No git or not from git repo.");
  25. return {
  26. commitDate: "unknown",
  27. commitHash: "unknown",
  28. };
  29. }
  30. })();
  31. const {
  32. OAUTH_AUTHORIZE_ENDPOINT,
  33. OAUTH_CLIENT_ID,
  34. OAUTH_REDIRECT_URI,
  35. OAUTH_CLIENT_SECRET,
  36. OAUTH_USERINFO,
  37. } = process.env;
  38. let authorizeUrl = "";
  39. if (OAUTH_AUTHORIZE_ENDPOINT && OAUTH_CLIENT_ID && OAUTH_REDIRECT_URI) {
  40. authorizeUrl = `${OAUTH_AUTHORIZE_ENDPOINT}?client_id=${OAUTH_CLIENT_ID}&response_type=token&scope=userinfo&redirect_uri=${encodeURIComponent(
  41. OAUTH_REDIRECT_URI,
  42. )}`;
  43. }
  44. return {
  45. version,
  46. ...commitInfo,
  47. buildMode,
  48. isApp,
  49. authorizeUrl,
  50. };
  51. };
  52. export type BuildConfig = ReturnType<typeof getBuildConfig>;