Skip to content

Commit fc5db17

Browse files
committed
options for the CLI to leverage
1 parent 8fdb60e commit fc5db17

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"access": "public"
66
},
77
"description": "HAXcms single and multisite nodejs server, api, and administration",
8-
"main": "app.js",
8+
"main": "src/index.js",
99
"scripts": {
1010
"dev:build": "npm run build && nodemon dist/app.js",
1111
"dev": "nodemon src/app.js",

src/index.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const { HAXCMS, HAXCMSClass, HAXCMSSite, systemStructureContext } = require('./lib/HAXCMS.js');
2+
const JSONOutlineSchema = require('./lib/JSONOutlineSchema.js');
3+
const JSONOutlineSchemaItem = require('./lib/JSONOutlineSchemaItem.js');
4+
const {RoutesMap, OpenRoutes } = require('./lib/RoutesMap.js');
5+
6+
module.exports = { HAXCMS, HAXCMSClass, HAXCMSSite, systemStructureContext, JSONOutlineSchema, JSONOutlineSchemaItem, RoutesMap, OpenRoutes };

src/lib/HAXCMS.js

+13-7
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class HAXCMSSite
7575
directory,
7676
siteBasePath,
7777
name,
78-
gitDetails,
78+
gitDetails = null,
7979
domain = null,
8080
build = null
8181
) {
@@ -1565,6 +1565,7 @@ class HAXCMSClass {
15651565
constructor() {
15661566
this.developerMode = false;
15671567
this.developerModeAdminOnly = false;
1568+
this.cliWritePath = null;
15681569
this.cdn = './';
15691570
this.sessionJwt = null;
15701571
this.protocol = 'http';
@@ -1611,7 +1612,8 @@ class HAXCMSClass {
16111612
this.boilerplatePath = __dirname + '/../boilerplate/';
16121613
// these are relative to root which is cwd
16131614
this.sitesDirectory = '_sites';
1614-
if (!systemStructureContext()) {
1615+
// CLI's do not operate in multisite mode default folder creator
1616+
if (!systemStructureContext() && !this.isCLI()) {
16151617
this.operatingContext = 'multisite';
16161618
// verify exists
16171619
if (!fs.existsSync(path.join(HAXCMS_ROOT, this.sitesDirectory))) {
@@ -1718,7 +1720,7 @@ class HAXCMSClass {
17181720
/**
17191721
* Load a site off the file system with option to create
17201722
*/
1721-
async loadSite(name, create = false, domain = null)
1723+
async loadSite(name, create = false, domain = null, build = null)
17221724
{
17231725
let tmpname = decodeURIComponent(name);
17241726
tmpname = this.cleanTitle(tmpname, false);
@@ -1737,8 +1739,8 @@ class HAXCMSClass {
17371739
return site;
17381740
}
17391741
else if (create) {
1740-
// attempt to create site
1741-
return await this.createSite(name, domain);
1742+
// attempt to create site
1743+
return await this.createSite(name, domain, null, build);
17421744
}
17431745
return false;
17441746
}
@@ -1763,10 +1765,14 @@ class HAXCMSClass {
17631765
git['url'] += '/' + name + '.git';
17641766
}
17651767
}
1766-
1768+
let writePath = HAXCMS_ROOT + this.sitesDirectory;
1769+
// allow CLI operations to overwrite write location
1770+
if (HAXCMS.cliWritePath && this.isCLI()) {
1771+
writePath = HAXCMS.cliWritePath;
1772+
}
17671773
if (
17681774
await site.newSite(
1769-
HAXCMS_ROOT + this.sitesDirectory,
1775+
writePath,
17701776
this.basePath + this.sitesDirectory + '/',
17711777
name,
17721778
git,

src/routes/createSite.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
const fs = require('fs-extra');
2-
const path = require('path');
31
const { HAXCMS } = require('../lib/HAXCMS.js');
42
const { Git } = require('git-interface');
53
const JSONOutlineSchemaItem = require('../lib/JSONOutlineSchemaItem.js');

0 commit comments

Comments
 (0)