@slicemachine/init 1.1.10-alpha.3 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,201 +1,70 @@
1
- import fs from "fs";
2
- import axios from "axios";
3
- import mime from "mime";
4
- import snakeCase from "lodash.snakecase";
5
- import path from "path";
6
- import FormData from "form-data";
7
- import uniqid from "uniqid";
8
- import { logs } from "../../utils";
1
+ import { InitClient } from "../../utils";
9
2
  import {
10
3
  Component,
11
4
  ComponentInfo,
12
5
  VariationSM,
13
6
  SliceSM,
14
7
  } from "@slicemachine/core/build/models";
8
+ import { Acl, ClientError } from "@slicemachine/client";
9
+ import { writeError } from "../../utils/logs";
15
10
 
16
- export type ALC = {
17
- values: {
18
- url: string;
19
- fields: Record<string, string>;
20
- };
21
- imgixEndpoint: string;
22
- err: null | string;
23
- };
24
-
25
- export async function createAcl(
26
- address: string,
27
- repository: string,
28
- authorization: string
29
- ): Promise<ALC> {
30
- return axios
31
- .get<ALC>(address + "create", {
32
- headers: {
33
- repository,
34
- Authorization: `Bearer ${authorization}`,
35
- "User-Agent": "slice-machine",
36
- },
37
- })
38
- .then((res) => res.data);
39
- }
40
-
41
- async function createFormForS3(
42
- key: string,
43
- filename: string,
44
- filePath: string,
45
- acl: ALC
46
- ): Promise<FormData | null> {
47
- const form = new FormData();
48
- Object.entries(acl.values.fields).forEach(([k, value]) => {
49
- form.append(k, value);
50
- });
51
- form.append("key", key);
52
- const contentType = mime.getType(filePath);
53
- contentType && form.append("Content-Type", contentType);
54
-
55
- return fs.promises
56
- .readFile(filePath)
57
- .then((file) => {
58
- form.append("file", file, { filename });
59
- return form;
60
- })
61
- .catch(() => {
62
- logs.writeError(`Error reading preview image: ${filename}`);
63
- return null;
64
- });
65
- }
66
-
67
- function createS3Key(
68
- repository: string,
69
- sliceName: string,
70
- variationId: string,
71
- filename: string
72
- ): string {
73
- return `${repository}/shared-slices/${snakeCase(sliceName)}/${snakeCase(
74
- variationId
75
- )}-${uniqid()}/${filename}`;
76
- }
77
-
78
- async function sendVariationPreviewToS3(
79
- acl: ALC,
80
- repository: string,
81
- sliceName: string,
82
- variationId: string,
83
- filePath: string
84
- ): Promise<string | null> {
85
- const filename = path.basename(filePath);
86
- const key = createS3Key(repository, sliceName, variationId, filename);
87
- const form = await createFormForS3(key, filename, filePath, acl);
88
- if (form === null) return null;
89
- if (form.hasKnownLength() === false) {
90
- logs.writeError(
91
- `[slice/push] An error occurred while uploading preview image ${filePath} as length in unknown`
92
- );
93
- }
94
-
95
- const errorMessage = `[slice/push] An error occurred while uploading preview images for ${sliceName}-${variationId} - please contact support`;
11
+ async function updateVariationWithScreenshot(
12
+ client: InitClient,
13
+ acl: Acl,
14
+ screenshotPaths: ComponentInfo["screenshotPaths"],
15
+ sliceName: SliceSM["id"],
16
+ variation: VariationSM
17
+ ): Promise<VariationSM> {
18
+ const screenshot = screenshotPaths[variation.id];
19
+ if (!screenshot || !screenshot.path) return Promise.resolve(variation);
96
20
 
97
- return axios
98
- .post(acl.values.url, form, {
99
- headers: {
100
- ...form.getHeaders(),
101
- "Content-Length": String(form.getLengthSync()),
102
- },
21
+ return client
22
+ .uploadScreenshot({
23
+ acl,
24
+ sliceName,
25
+ variationId: variation.id,
26
+ filePath: screenshot.path,
103
27
  })
104
- .then((res) => {
105
- if (res.status !== 204) {
106
- logs.writeError(errorMessage);
107
- logs.writeError(`${res.status}: ${res.statusText}`);
108
- return null;
109
- } else {
110
- return `${acl.imgixEndpoint}/${key}`;
111
- }
28
+ .then((screenshotUrl) => {
29
+ return {
30
+ ...variation,
31
+ imageUrl: screenshotUrl,
32
+ };
112
33
  })
113
- .catch((err) => {
114
- logs.writeError(errorMessage);
115
- if (axios.isAxiosError(err) && err.response) {
116
- logs.writeError(`${err.response.status}: ${err.response.statusText}`);
117
- } else if (err instanceof Error) {
118
- logs.writeError(err.message);
119
- } else {
120
- logs.writeError(String(err));
121
- }
122
- return null;
34
+ .catch((error: ClientError) => {
35
+ writeError(
36
+ `Couldn't upload screenshot slice: ${sliceName} - variation: ${variation.id}`
37
+ );
38
+ writeError(error.message, "Full error:");
39
+ return variation;
123
40
  });
124
41
  }
125
42
 
126
- async function maybeAddImageUrlToVariation(
127
- acl: ALC,
128
- repository: string,
129
- modelId: string,
130
- pathToScreenShot: string,
131
- variation: VariationSM
132
- ): Promise<VariationSM> {
133
- const imageUrl = await sendVariationPreviewToS3(
134
- acl,
135
- repository,
136
- modelId,
137
- variation.id,
138
- pathToScreenShot
139
- );
140
- if (!imageUrl) return variation;
141
-
142
- return {
143
- ...variation,
144
- imageUrl,
145
- };
146
- }
147
-
148
- async function addImageUrlsToVariations(
149
- acl: ALC,
150
- repository: string,
151
- modelId: string,
152
- screenshotPaths: ComponentInfo["screenshotPaths"],
153
- variations: Array<VariationSM>
154
- ): Promise<Array<VariationSM>> {
43
+ export async function updateSlicesWithScreenshots(
44
+ client: InitClient,
45
+ acl: Acl,
46
+ components: Array<Component>
47
+ ): Promise<Array<SliceSM>> {
155
48
  return Promise.all(
156
- variations.map(async (variation) => {
157
- const screenshot = screenshotPaths[variation.id];
158
- if (!screenshot || !screenshot.path) return variation;
49
+ components.map(async (component) => {
50
+ const { screenshotPaths, model } = component;
159
51
 
160
- return maybeAddImageUrlToVariation(
161
- acl,
162
- repository,
163
- modelId,
164
- screenshot.path,
165
- variation
52
+ const variationsUpdated: VariationSM[] = await Promise.all(
53
+ model.variations.map(async (variation) =>
54
+ updateVariationWithScreenshot(
55
+ client,
56
+ acl,
57
+ screenshotPaths,
58
+ model.id,
59
+ variation
60
+ )
61
+ )
166
62
  );
167
- })
168
- );
169
- }
170
-
171
- async function maybeUpdateModelVariationsWithImageUrl(
172
- acl: ALC,
173
- repository: string,
174
- component: Component
175
- ): Promise<SliceSM> {
176
- const { screenshotPaths, model } = component;
177
- const variations = await addImageUrlsToVariations(
178
- acl,
179
- repository,
180
- model.id,
181
- screenshotPaths,
182
- model.variations
183
- );
184
-
185
- return {
186
- ...model,
187
- variations,
188
- };
189
- }
190
63
 
191
- export async function addImageUrlsToModelVariations(
192
- acl: ALC,
193
- repository: string,
194
- components: Array<Component>
195
- ): Promise<Array<SliceSM>> {
196
- return Promise.all(
197
- components.map(async (component) =>
198
- maybeUpdateModelVariationsWithImageUrl(acl, repository, component)
199
- )
64
+ return {
65
+ ...model,
66
+ variations: variationsUpdated,
67
+ };
68
+ })
200
69
  );
201
70
  }
@@ -1,34 +1,32 @@
1
- import { Component } from "@slicemachine/core/build/models";
1
+ import { Component, Manifest, Slices } from "@slicemachine/core/build/models";
2
+ import { Acl, ClientError } from "@slicemachine/client";
3
+ import { InitClient, logs } from "../../utils";
2
4
  import * as Libraries from "@slicemachine/core/build/libraries";
3
- import { logs } from "../../utils";
4
- import { getRemoteSliceIds, sendManyModelsToPrismic } from "./communication";
5
- import { getEndpointsFromBase } from "./endpoints";
6
5
  import { promptToPushSlices } from "./prompts";
7
- import { addImageUrlsToModelVariations, createAcl } from "./s3";
8
-
9
- export async function sendSlicesFromStarter(
10
- base: string,
11
- repository: string,
12
- authorization: string,
13
- libraryPaths: Array<string>,
14
- cwd: string
15
- ) {
16
- const endpoints = getEndpointsFromBase(base);
17
- const libraries = Libraries.libraries(cwd, libraryPaths);
18
-
19
- if (libraries.length === 0) return Promise.resolve(false);
20
-
21
- const remoteSlices = await getRemoteSliceIds(
22
- endpoints.Models,
23
- repository,
24
- authorization
25
- );
6
+ import { updateSlicesWithScreenshots } from "./s3";
7
+ import { writeError } from "../../utils/logs";
26
8
 
27
- if (remoteSlices.length) {
28
- // do prompt about slices
9
+ export async function sendSlices(
10
+ client: InitClient,
11
+ cwd: string,
12
+ manifest: Manifest
13
+ ): Promise<boolean> {
14
+ if (!manifest.libraries) return Promise.resolve(false); // No libraries defined
29
15
 
30
- const pushAnyway = await promptToPushSlices();
16
+ const libraries = Libraries.libraries(cwd, manifest.libraries);
17
+ const components = libraries.reduce<Array<Component>>((acc, lib) => {
18
+ return [...acc, ...lib.components];
19
+ }, []);
20
+
21
+ if (components.length === 0) return Promise.resolve(false); // No slices to send found in the libraries
31
22
 
23
+ const remoteSlicesIds: string[] = await client
24
+ .getSlices()
25
+ .then((slices) => slices.map((slice) => slice.id));
26
+
27
+ // If the repository already has Slices, ask the user to confirm.
28
+ if (remoteSlicesIds.length) {
29
+ const pushAnyway = await promptToPushSlices();
32
30
  if (pushAnyway === false) return Promise.resolve(true);
33
31
  }
34
32
 
@@ -37,25 +35,40 @@ export async function sendSlicesFromStarter(
37
35
  );
38
36
  spinner.start();
39
37
 
40
- const acl = await createAcl(endpoints.AclProvider, repository, authorization);
38
+ const acl: Acl | null = await client
39
+ .createAcl()
40
+ .catch((error: ClientError) => {
41
+ writeError(
42
+ "Uploading screenshots for your slices failed, please contact us."
43
+ );
44
+ writeError(error.message, "Full error:");
45
+ return null;
46
+ });
41
47
 
42
- const components = libraries.reduce<Array<Component>>((acc, lib) => {
43
- return [...acc, ...lib.components];
44
- }, []);
48
+ // If the acl failed to be created, don't mind the screenshots.
49
+ const models = acl
50
+ ? await updateSlicesWithScreenshots(client, acl, components)
51
+ : components.map((component) => component.model);
45
52
 
46
- const models = await addImageUrlsToModelVariations(
47
- acl,
48
- repository,
49
- components
50
- );
53
+ await Promise.all(
54
+ models.map(async (model) => {
55
+ const slice = Slices.fromSM(model);
51
56
 
52
- await sendManyModelsToPrismic(
53
- repository,
54
- authorization,
55
- endpoints.Models,
56
- remoteSlices,
57
- models
58
- );
57
+ const promise = remoteSlicesIds.includes(slice.id)
58
+ ? client.updateSlice(slice)
59
+ : client.insertSlice(slice);
60
+
61
+ return promise.catch((error: ClientError) => {
62
+ logs.writeError(`Sending slice ${model.id} - ${error.message}`);
63
+
64
+ // throwing the error again to stop the Promise.all
65
+ throw error;
66
+ });
67
+ })
68
+ ).catch(() => {
69
+ // the error about the slice that failed to be pushed should be in the terminal already.
70
+ process.exit(1);
71
+ });
59
72
 
60
73
  spinner.succeed();
61
74
  return Promise.resolve(true);
@@ -81,13 +81,17 @@ const authenticationHandler =
81
81
  };
82
82
  };
83
83
 
84
+ function stripTrailingSlash(str: string) {
85
+ return str.endsWith("/") ? str.slice(0, -1) : str;
86
+ }
87
+
84
88
  function buildServer(base: string, port: number, host: string): hapi.Server {
85
89
  const server = hapi.server({
86
90
  port,
87
91
  host,
88
92
  routes: {
89
93
  cors: {
90
- origin: [base],
94
+ origin: [stripTrailingSlash(base)],
91
95
  headers: ["Origin", "X-Requested-With", "Content-Type", "Accept"],
92
96
  },
93
97
  },
@@ -1,26 +1,30 @@
1
- import { Utils, Models } from "@slicemachine/core";
1
+ import { Utils } from "@slicemachine/core";
2
2
  import { startServerAndOpenBrowser } from "./helpers";
3
3
  import {
4
- Communication,
5
4
  Endpoints,
6
5
  PrismicSharedConfigManager,
7
6
  } from "@slicemachine/core/build/prismic";
7
+ import { InitClient } from "../client";
8
8
 
9
9
  async function startAuth({
10
- base,
10
+ client,
11
11
  url,
12
12
  action,
13
13
  }: {
14
- base: string;
14
+ client: InitClient;
15
15
  url: string;
16
16
  action: "signup" | "login";
17
17
  }): Promise<void> {
18
- const { onLoginFail } = await startServerAndOpenBrowser(url, action, base);
18
+ const { onLoginFail } = await startServerAndOpenBrowser(
19
+ url,
20
+ action,
21
+ client.apisEndpoints.Wroom
22
+ );
19
23
  try {
20
24
  // We wait 3 minutes before timeout
21
- await Utils.Poll.startPolling<Models.UserInfo | null, Models.UserInfo>(
22
- () => Auth.validateSession(base),
23
- (user): user is Models.UserInfo => !!user,
25
+ await Utils.Poll.startPolling<boolean, boolean>(
26
+ () => Auth.validateSession(client),
27
+ (isSessionValid): isSessionValid is boolean => isSessionValid == true,
24
28
  3000,
25
29
  60
26
30
  );
@@ -31,33 +35,29 @@ async function startAuth({
31
35
  }
32
36
 
33
37
  export const Auth = {
34
- login: async (base: string): Promise<void> => {
35
- const endpoints = Endpoints.buildEndpoints(base);
38
+ login: async (client: InitClient): Promise<void> => {
39
+ const endpoints = Endpoints.buildEndpoints(client.apisEndpoints.Wroom);
36
40
  return startAuth({
37
- base,
41
+ client,
38
42
  url: endpoints.Dashboard.cliLogin,
39
43
  action: "login",
40
44
  });
41
45
  },
42
- signup: async (base: string): Promise<void> => {
43
- const endpoints = Endpoints.buildEndpoints(base);
44
- return startAuth({
45
- base,
46
- url: endpoints.Dashboard.cliSignup,
47
- action: "signup",
48
- });
49
- },
50
- logout: (): void => PrismicSharedConfigManager.remove(),
51
- validateSession: async (
52
- requiredBase: string
53
- ): Promise<Models.UserInfo | null> => {
54
- const config = PrismicSharedConfigManager.get();
46
+ validateSession: async (client: InitClient): Promise<boolean> => {
47
+ const authToken = PrismicSharedConfigManager.getAuth();
55
48
 
56
- if (!config.cookies.length) return Promise.resolve(null); // default config, logged out.
57
- if (requiredBase != config.base) return Promise.resolve(null); // not the same base so it doesn't count.
58
-
59
- return Communication.validateSession(config.cookies, requiredBase).catch(
60
- () => null
61
- );
49
+ // verify token is by retrieving the profile, update the config if need be.
50
+ return client
51
+ .updateAuthenticationToken(authToken)
52
+ .profile()
53
+ .then((userProfile) => {
54
+ // settings shortId and IntercomHash as we switch between dev and prod.
55
+ PrismicSharedConfigManager.setProperties({
56
+ shortId: userProfile.shortId,
57
+ intercomHash: userProfile.intercomHash,
58
+ });
59
+ return true;
60
+ })
61
+ .catch(() => false);
62
62
  },
63
63
  };
@@ -0,0 +1,67 @@
1
+ import * as t from "io-ts";
2
+ import { Models } from "@slicemachine/core";
3
+ import { PrismicSharedConfigManager } from "@slicemachine/core/build/prismic";
4
+ import { Client, getAndValidateResponse } from "@slicemachine/client";
5
+
6
+ export class InitClient extends Client {
7
+ async listRepositories(): Promise<Models.Repository[]> {
8
+ return getAndValidateResponse<Models.Repository[]>(
9
+ this._get(`${this.apisEndpoints.Users}repositories`),
10
+ "repository list",
11
+ t.array(Models.Repository)
12
+ );
13
+ }
14
+
15
+ async createRepository(
16
+ domain: string,
17
+ framework: Models.Frameworks
18
+ ): Promise<string> {
19
+ const data = {
20
+ domain,
21
+ framework,
22
+ plan: "personal",
23
+ isAnnual: "false",
24
+ role: "developer",
25
+ };
26
+
27
+ return this._fetch({
28
+ method: "post",
29
+ url: `${this.apisEndpoints.Wroom}authentication/newrepository?app=slicemachine`,
30
+ data: data,
31
+ headers: {
32
+ Cookie: PrismicSharedConfigManager.get().cookies,
33
+ "User-Agent": "prismic-cli/sm", // special user agent just for this route.
34
+ },
35
+ }).then(() => domain);
36
+ }
37
+
38
+ async domainExist(domain: string): Promise<boolean> {
39
+ return getAndValidateResponse<boolean>(
40
+ this._get(
41
+ `${this.apisEndpoints.Wroom}app/dashboard/repositories/${domain}/exists`
42
+ ),
43
+ "repository exists",
44
+ t.boolean
45
+ );
46
+ }
47
+
48
+ async pushDocuments(
49
+ signature: string,
50
+ documents: Record<string, unknown>,
51
+ cookies: string
52
+ ) {
53
+ if (!this.repository) throw new Error("Repository undefined in the client");
54
+ const repositoryDirectUrl = new URL(this.apisEndpoints.Wroom);
55
+ repositoryDirectUrl.hostname = `${this.repository}.${repositoryDirectUrl.hostname}`;
56
+
57
+ return this._fetch({
58
+ method: "post",
59
+ url: `${repositoryDirectUrl.toString()}starter/documents`,
60
+ data: { signature, documents: JSON.stringify(documents) },
61
+ headers: {
62
+ Cookie: cookies,
63
+ "User-Agent": "prismic-cli/0", // special user agent just for this route.
64
+ },
65
+ });
66
+ }
67
+ }
@@ -1,30 +1,24 @@
1
1
  import type { Models } from "@slicemachine/core";
2
2
  import * as logs from "./logs";
3
- import * as Prismic from "@slicemachine/core/build/prismic";
3
+ import { InitClient } from "./client";
4
4
 
5
5
  export function createRepository(
6
+ client: InitClient,
6
7
  domain: string,
7
- framework: Models.Frameworks,
8
- cookies: string,
9
- base: string
8
+ framework: Models.Frameworks
10
9
  ): Promise<string> {
11
10
  const spinner = logs.spinner("Creating Prismic Repository");
12
11
  spinner.start();
13
12
 
14
- return Prismic.Communication.createRepository(
15
- domain,
16
- cookies,
17
- framework,
18
- base
19
- )
20
- .then((res) => {
21
- const addressUrl = new URL(base);
22
- const repoDomainName = res.data.domain || domain;
23
- addressUrl.hostname = `${repoDomainName}.${addressUrl.hostname}`;
13
+ return client
14
+ .createRepository(domain, framework)
15
+ .then((domain: string) => {
16
+ const addressUrl = new URL(client.apisEndpoints.Wroom);
17
+ addressUrl.hostname = `${domain}.${addressUrl.hostname}`;
24
18
  const address = addressUrl.toString();
25
19
  spinner.succeed(`We created your new repository ${address}`);
26
20
 
27
- return repoDomainName;
21
+ return domain;
28
22
  })
29
23
  .catch((error: Error) => {
30
24
  spinner.fail(`Error creating repository ${domain}`);
@@ -0,0 +1,18 @@
1
+ import fs from "fs";
2
+ import path from "path";
3
+
4
+ export async function lsdir(dir: string): Promise<Array<string>> {
5
+ return fs.promises.readdir(dir).then((dirs) => {
6
+ return dirs
7
+ .filter((name) => fs.statSync(path.join(dir, name)).isDirectory())
8
+ .map((subdirectory) => path.join(dir, subdirectory));
9
+ });
10
+ }
11
+
12
+ export async function lsfiles(dir: string): Promise<Array<string>> {
13
+ return fs.promises.readdir(dir).then((dirs) => {
14
+ return dirs
15
+ .filter((name) => fs.statSync(path.join(dir, name)).isFile())
16
+ .map((file) => path.join(dir, file));
17
+ });
18
+ }
@@ -1,7 +1,10 @@
1
+ import { ApplicationMode } from "@slicemachine/client";
1
2
  import util from "util";
2
3
  import { exec } from "child_process";
3
4
  export * as logs from "./logs";
4
5
  export { Auth } from "./auth";
6
+ export * from "./client";
7
+ export * from "./fs";
5
8
 
6
9
  export function findArgument(args: string[], name: string): string | undefined {
7
10
  const flagIndex: number = args.indexOf(`--${name}`);
@@ -23,3 +26,16 @@ export function findFlag(args: string[], name: string): boolean {
23
26
  export const execCommand: (
24
27
  command: string
25
28
  ) => Promise<{ stderr: string; stdout: string }> = util.promisify(exec);
29
+
30
+ export function getApplicationMode(
31
+ argumentValue: string | undefined
32
+ ): ApplicationMode | null {
33
+ switch (argumentValue) {
34
+ case ApplicationMode.PROD:
35
+ case ApplicationMode.STAGE:
36
+ case ApplicationMode.DEV:
37
+ return argumentValue;
38
+ default:
39
+ return null;
40
+ }
41
+ }
@@ -0,0 +1,44 @@
1
+ import { InitClient } from "./client";
2
+
3
+ export async function validateRepositoryName(
4
+ client: InitClient,
5
+ name: string
6
+ ): Promise<boolean> {
7
+ const domain = name.trim();
8
+ const errors = [];
9
+
10
+ const startsWithLetter = /^[a-zA-Z]/.test(domain);
11
+ if (!startsWithLetter) errors.push("Must start with a letter.");
12
+
13
+ const acceptedChars = /^[a-z0-9-]+$/.test(domain);
14
+ if (!acceptedChars)
15
+ errors.push("Must contain only lowercase letters, numbers and hyphens.");
16
+
17
+ const fourCharactersOrMore = domain.length >= 4;
18
+ if (!fourCharactersOrMore)
19
+ errors.push(
20
+ "Must have four or more alphanumeric characters and/or hyphens."
21
+ );
22
+
23
+ const endsWithALetterOrNumber = /[a-z0-9]$/.test(domain);
24
+ if (!endsWithALetterOrNumber)
25
+ errors.push("Must end in a letter or a number.");
26
+
27
+ const thirtyCharacterOrLess = domain.length <= 30;
28
+ if (!thirtyCharacterOrLess) errors.push("Must be 30 characters or less");
29
+
30
+ if (errors.length > 0) {
31
+ const errorString = errors.map((d, i) => `(${i + 1}: ${d}`).join(" ");
32
+ const msg = `Validation errors: ${errorString}`;
33
+ return Promise.reject(new Error(msg));
34
+ }
35
+
36
+ return client
37
+ .domainExist(domain)
38
+ .then((isAvailable) =>
39
+ isAvailable
40
+ ? true
41
+ : Promise.reject(new Error(`${name} is already in use`))
42
+ )
43
+ .catch(() => Promise.reject(new Error(`${name} is already in use`)));
44
+ }