Comparing version
@@ -59,3 +59,3 @@ export interface AdobeApp { | ||
push(data: AdobeScriptCommand): void; | ||
resolve(command: string): void; | ||
resolve(commandName: string): Promise<void>; | ||
} | ||
@@ -62,0 +62,0 @@ export interface AdobeScriptBuilder { |
import { Config, AdobeApp } from "./api"; | ||
declare const newAdobeApp: (config: Config, timeoutCallback?: Function) => AdobeApp; | ||
export default newAdobeApp; | ||
export declare const newAdobeApp: (config: Config, timeoutCallback?: Function) => AdobeApp; |
@@ -10,12 +10,16 @@ "use strict"; | ||
var broadcast_1 = require("./broadcast"); | ||
var newAdobeApp = function (config, timeoutCallback) { | ||
exports.newAdobeApp = function (config, timeoutCallback) { | ||
var scriptCreator = script_file_creator_1.default(config); | ||
var commandStack = commands_1.default(); | ||
var eventListener = listener_1.default(config.host, config.port, commandStack.resolve); | ||
var appProcess = process_1.default(config.app.path, function () { | ||
broadcast_1.broadcast(config.host, config.port, { command: api_1.AdobeAppEvent.CloseApp }); | ||
}, { | ||
var eventListener = listener_1.default(config.host, config.port, eventListenerCallback); | ||
var appProcess = process_1.default(config.app.path, appCloseCallback, { | ||
timeout: config.appTimeout, | ||
timeoutCallback: timeoutCallback | ||
}); | ||
function eventListenerCallback(commandName) { | ||
commandStack.resolve(commandName); | ||
} | ||
function appCloseCallback() { | ||
broadcast_1.broadcast(config.host, config.port, { command: api_1.AdobeAppEvent.CloseApp }); | ||
} | ||
var app = { | ||
@@ -94,3 +98,2 @@ init: function () { | ||
}; | ||
exports.default = newAdobeApp; | ||
//# sourceMappingURL=app.js.map |
@@ -9,4 +9,4 @@ "use strict"; | ||
]); | ||
var buildCurlCommand = function (host, port, message) { | ||
return "curl -d '" + message + "' -H \\\"Content-Type: application/json\\\" -X POST http://" + host + ":" + port; | ||
var buildBroadcastCommand = function (host, port, message) { | ||
return "adobe-broadcast --host='" + host + "' --port=" + port + " --msg='" + message + "'"; | ||
}; | ||
@@ -18,4 +18,4 @@ exports.newBroadcastBuilder = function (config) { | ||
var broadcast = broadcastMethods.get(config.app.name); | ||
var curl = buildCurlCommand(config.host, config.port, payload); | ||
return broadcast(curl); | ||
var cmd = buildBroadcastCommand(config.host, config.port, payload); | ||
return broadcast(cmd); | ||
} | ||
@@ -25,5 +25,5 @@ }; | ||
exports.broadcast = function (host, port, message) { | ||
var curl = buildCurlCommand(host, port, JSON.stringify(message)); | ||
child_process_1.exec(curl); | ||
var cmd = buildBroadcastCommand(host, port, JSON.stringify(message)); | ||
child_process_1.exec(cmd); | ||
}; | ||
//# sourceMappingURL=broadcast.js.map |
@@ -6,14 +6,17 @@ "use strict"; | ||
return { | ||
push: function (data) { | ||
push: function (data) { return new Promise(function (resolve) { | ||
if (!stack.has(data.command)) | ||
stack.set(data.command, []); | ||
stack.get(data.command).push(data); | ||
return Promise.resolve(); | ||
}, | ||
resolve: function (command) { | ||
if (stack.has(command)) { | ||
return stack.get(command).shift().resolve(); | ||
return resolve(); | ||
}); }, | ||
resolve: function (commandName) { return new Promise(function (resolve) { | ||
if (stack.has(commandName)) { | ||
var command = stack.get(commandName).shift(); | ||
if (command) { | ||
command.resolve(); | ||
} | ||
} | ||
return Promise.resolve(); | ||
} | ||
return resolve(); | ||
}); } | ||
}; | ||
@@ -20,0 +23,0 @@ }; |
declare const _default: { | ||
adobeScriptsPath: string; | ||
scriptsPath: string; | ||
host: string; | ||
port: number; | ||
}; | ||
export default _default; |
@@ -5,6 +5,10 @@ "use strict"; | ||
var scriptsPath = 'js'; | ||
var host = 'localhost'; | ||
var port = 5000; | ||
exports.default = { | ||
adobeScriptsPath: adobeScriptsPath, | ||
scriptsPath: scriptsPath | ||
scriptsPath: scriptsPath, | ||
host: host, | ||
port: port | ||
}; | ||
//# sourceMappingURL=defaults.js.map |
@@ -1,3 +0,2 @@ | ||
import newAdobeApp from './app'; | ||
export * from './app'; | ||
export * from './api'; | ||
export default newAdobeApp; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var tslib_1 = require("tslib"); | ||
var app_1 = require("./app"); | ||
tslib_1.__exportStar(require("./app"), exports); | ||
tslib_1.__exportStar(require("./api"), exports); | ||
exports.default = app_1.default; | ||
//# sourceMappingURL=index.js.map |
import { AdobeEventListener } from './api'; | ||
declare const newAdobeAppListener: (host: string, port: number, callback: (command: string) => void) => AdobeEventListener; | ||
declare const newAdobeAppListener: (host: string, port: number, callback: (commandName: string) => void) => AdobeEventListener; | ||
export default newAdobeAppListener; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var http_1 = require("http"); | ||
var net_1 = require("net"); | ||
var newAdobeAppListener = function (host, port, callback) { | ||
var requestListener = function (req, res) { | ||
res.setHeader('Content-Type', 'application/json'); | ||
req.on('data', function (chunk) { | ||
var data = JSON.parse(chunk); | ||
var callbacks = new Map(); | ||
var server; | ||
var client; | ||
function connectionListener(socket) { | ||
client = socket; | ||
socket.on('data', function (buffer) { | ||
var data = JSON.parse(buffer.toString()); | ||
if (callbacks.has(data.command)) { | ||
callbacks.get(data.command)(data.stdout, data.error); | ||
callbacks.get(data.command)(data.stdout, data.stderr); | ||
} | ||
callback(data.command); | ||
}); | ||
res.end(); | ||
}; | ||
var callbacks = new Map(); | ||
var server = http_1.createServer(requestListener); | ||
} | ||
function disposeServer() { | ||
if (client) { | ||
client.end(); | ||
} | ||
server = null; | ||
console.log("Adobe Event Listener has been stopped at port " + port); | ||
} | ||
return { | ||
@@ -26,9 +33,11 @@ addEventListener: function (event, callback) { | ||
start: function () { | ||
if (server) | ||
return; | ||
server = net_1.createServer(connectionListener); | ||
server.listen(port, host, function () { | ||
console.log("Adobe Event Listener running at port " + port); | ||
console.log("Adobe Event Listener running at " + host + ":" + port); | ||
}); | ||
}, | ||
close: function () { | ||
server.close(); | ||
console.log("Adobe Event Listener has been stopped at port " + port); | ||
server.close(disposeServer); | ||
} | ||
@@ -35,0 +44,0 @@ }; |
@@ -42,5 +42,5 @@ "use strict"; | ||
if (fs.existsSync(scriptPath)) { | ||
console.info("Script file found: " + scriptPath); | ||
return fs.readFileSync(scriptPath).toString(); | ||
} | ||
console.info("Script file not found: " + scriptPath); | ||
return "\"\";"; | ||
@@ -47,0 +47,0 @@ }; |
{ | ||
"name": "adobe-node", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Control Adobe applications - such as Photoshop, Animate, Illustrator, InDesign - from node. Run JavaScript to remotely - from the command line - create, modify or export document content. This module can be used to automate the workflow by creating an action chain that can be executed without user intervention.", | ||
@@ -9,2 +9,5 @@ "main": "dist/index", | ||
}, | ||
"bin": { | ||
"adobe-broadcast": "dist/adobe-broadcast.js" | ||
}, | ||
"keywords": [ | ||
@@ -37,3 +40,5 @@ "adobe", | ||
"dependencies": { | ||
"@types/minimist": "^1.2.0", | ||
"@types/mkdirp-promise": "^5.0.0", | ||
"minimist": "^1.2.0", | ||
"mkdirp-promise": "^5.0.1", | ||
@@ -40,0 +45,0 @@ "tslib": "^1.10.0" |
@@ -6,11 +6,6 @@ # adobe-node | ||
Add package to your project eg. | ||
``` | ||
npm i adobe-node | ||
``` | ||
**You must have cURL installed for this module to work properly.** | ||
If you are using Windows and you do not have `cURL` installed, you can use this [link](https://curl.haxx.se/dlwiz/?type=bin) to download and install it. It is important that you can run `curl` from the command line. | ||
## API | ||
@@ -88,3 +83,3 @@ | ||
``` | ||
import newAdobeApp, { AdobeAppName, AdobeAppEvent, AdobeApp, BroadcastMessage } from "adobe-node"; | ||
import { newAdobeApp, AdobeAppName, AdobeAppEvent, AdobeApp, BroadcastMessage } from "adobe-node"; | ||
@@ -216,3 +211,3 @@ const sleep = (duration: number) => new Promise(resolve => { setTimeout(resolve, duration) }); | ||
} finally { | ||
app.system("curl -d '{\"command\":\"new_document\",\"stdout\":\"" + __stdout + "\", \"stderr\":\"" + __stderr + "\" }' -H \"Content-Type: application/json\" -X POST http://localhost:5000"); | ||
app.system("adobe-broadcast --host='localhost' --port=5000 --msg='{\"command\":\"new_document\",\"stdout\":\"" + __stdout + "\", \"stderr\":\"" + __stderr + "\" }'"); | ||
} | ||
@@ -219,0 +214,0 @@ })(); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
57951
6.18%36
9.09%519
8.35%5
66.67%217
-2.25%4
33.33%+ Added
+ Added
+ Added
+ Added