Difference between revisions of "webAPI for softMC"
Line 99: | Line 99: | ||
|} | |} | ||
− | ==='''Uploading Files - No | + | ==='''Uploading Files - No Overwrite'''=== |
{|class="wikitable" | {|class="wikitable" | ||
|width="150"|'''Description''' | |width="150"|'''Description''' | ||
Line 140: | Line 140: | ||
|} | |} | ||
− | ==='''Uploading Files - | + | ==='''Uploading Files - Overwrite Existing'''=== |
{|class="wikitable" | {|class="wikitable" | ||
|width="150"|'''Description''' | |width="150"|'''Description''' | ||
Line 177: | Line 177: | ||
} | } | ||
}); | }); | ||
+ | |||
+ | </syntaxhighlight> | ||
+ | |} | ||
+ | |||
+ | |||
+ | ==='''Deleting Files'''=== | ||
+ | {|class="wikitable" | ||
+ | |width="150"|'''Description''' | ||
+ | |Delete a specific file | ||
+ | |- | ||
+ | |'''URL''' | ||
+ | |/cs/file/:''filename'' | ||
+ | |- | ||
+ | |'''method''' | ||
+ | |DELETE | ||
+ | |- | ||
+ | |'''Success Response''' | ||
+ | |'''code:''' 200 <br> '''Content:''' true/false | ||
+ | |- | ||
+ | |'''Sample Call''' | ||
+ | |<syntaxhighlight lang="html4strict"> | ||
+ | $.ajax({ | ||
+ | url: “http://” + ip + ”:1207/cs/file/MYFILE.PRG”, | ||
+ | type: 'DELETE', | ||
+ | success: function(result) { | ||
+ | if (result) { | ||
+ | // success | ||
+ | } else { | ||
+ | // failed | ||
+ | } | ||
+ | } | ||
+ | }); | ||
+ | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} |
Revision as of 08:08, 21 February 2018
Contents
Introduction
WebAPI allows users to do the following actions from a web-browser:
- Query softMC – send MC-Basic commands and get a response, async.
- Upload files – files will be uploaded into /var/home/mc/FFS0/SSMC folder.
- Get the file list on MC – retrieve a list of the files inside the SSMC folder.
- Get file content – retrieve the content of a file inside the SSMC folder.
In order to use the Web API, the following should be installed on the softMC:
- softMC Web Server
- softMC minimum version: 0.4.17.3
- WebAPI license
Getting Started
NOTE | |
The way to upload and access files to softMC explained HERE |
Installing the JavaScript library
- Download the JavaScript script which will be provided with your webAPI license, and located it in your project's folder.
NOTE Projects should be located in /var/home/mc/www - In your HTML file, include conn.js in your <head> tag:
<head>
<script src = "js/conn.js"></script>
</head>
Connecting to softMC
Use those commands at your project to be able to communicate with softMC:
- To initialize a WebSocket connection:
new MC_CONNECTION().init(); - In case you want a callback to be called once a connection has been made (when the WebSocket’s onopen method is called), you can pass a callback as a parameter like so:
new MC_CONNECTION(callback).init(); - Advanced users who wishes to customize the WebSocket behavior (onopen, onerror, onmessage, onclose…) can open conn.js and edit the functions there.
Querying softMC
- After initializing the WebSocket connection, you may use the following command to query the controller using MC-Basic syntax:
conn.queryMC(query,callback); - For example:
conn.queryMC(“?ver”,function(result){
alert(“Your softMC version is “ + result);
});
File Operation
Overview
- File operations (upload, get content, etc…) can be done using a REST API.
- It’s best practice to use AJAX to retrieve the data asynchronously.
IMPORTANT | |
All requests should be done to PORT 1207 (!) |
Getting Files List
Description | Get Files |
URL | /cs/files |
Method | GET |
Data Params (optional) | {ext: [string], asJSON: [Boolean]} ext: A comma-separated list of the extensions you want to get. asJSON": should the list return as a JSON array? Examples: {ext: “PRG,LIB”, asJSON: false} {ext: “PRG,LIB”, asJSON: true} |
Success Response | Code: 200 Content: [String of comma-separated files] or [JSON Array of files objects] Examples: 1. "AUTOEXEC.PRG,SETUP.PRG,TP.LIB” 2. [
{
fileName: AUTOEXEC.PRG,
modified: 1499679189000,
fileNameOnly: AUTOEXEC
extension: PRG
}
]
|
Sample Call | $.get(“http://” + ip + “:1207/cs/files/”,{asJSON:true},callback);
|
Notes | If an error occurs, the file list would be empty |
Getting File Content
Description | Get a specific file content |
URL | /cs/file/:filename |
Method | GET |
Success Response | Code: 200 Content: [String of file content] Example: “This is the file content\nReturned as a string” |
Sample Call | $.get(“http://” + ip + “:1207/cs/file/MYFILE.PRG”,function(result){
console.log(result);
});
|
Notes | If an error occurs, the file content would be empty |
Uploading Files - No Overwrite
Description | Uploading files (Unless the file already exists) |
URL | /cs/upload |
method | POST |
Data (Required) | Data Type: multipart/from-data File Part name: file |
Success Response | code: 200 or 403 if permission is denied Response Type: JSON Content: {
err: [integer] / undefined
}
Error Codes: -1 - File already exist -2 - Unknown Error -3 - Invalid data format sent -4 - Permission denied |
Sample Call | var formData = new FormData();
formData.append('file', new File([new Blob([“content”])], “A.PRG” ));
$.ajax({
contentType: "multipart/form-data;",
url: “http://” + ip + “:1207/cs/upload”,
type: 'POST',
data: formData,
cache: false,
contentType: false,
processData: false,
success: function(result) {
if (result.err)
// do something with the error
}
});
|
Uploading Files - Overwrite Existing
Description | Uploading files and overwrite existing file if exists |
URL | /cs/upload/overwrite |
method | POST |
Data (Required) | Data Type: multipart/from-data File Part name: file |
Success Response | code: 200 or 403 if permission is denied Response Type: JSON Content: {
err: [integer] / undefined
}
Error Codes: -2 - Unknown Error -4 - Permission denied |
Sample Call | var formData = new FormData();
formData.append('file', new File([new Blob([“content”])], “A.PRG” ));
$.ajax({
contentType: "multipart/form-data;",
url: “http://” + ip + “:1207/cs/upload/overwrite”,
type: 'POST',
data: formData,
cache: false,
contentType: false,
processData: false,
success: function(result) {
if (result.err)
// do something with the error
}
});
|
Deleting Files
Description | Delete a specific file |
URL | /cs/file/:filename |
method | DELETE |
Success Response | code: 200 Content: true/false |
Sample Call | $.ajax({
url: “http://” + ip + ”:1207/cs/file/MYFILE.PRG”,
type: 'DELETE',
success: function(result) {
if (result) {
// success
} else {
// failed
}
}
});
|