import React, { useEffect} from 'react'; import { useInterval } from 'react-powerhooks'; import AppsIcon from '@material-ui/icons/Apps'; import Grid from '@material-ui/core/Grid'; import Select from '@material-ui/core/Select'; import Paper from '@material-ui/core/Paper'; import Divider from '@material-ui/core/Divider'; import ButtonBase from '@material-ui/core/ButtonBase'; import Button from '@material-ui/core/Button'; import TextField from '@material-ui/core/TextField'; import FormControl from '@material-ui/core/FormControl'; import MenuItem from '@material-ui/core/MenuItem'; import Tooltip from '@material-ui/core/Tooltip'; import FormControlLabel from '@material-ui/core/FormControlLabel'; import Switch from '@material-ui/core/Switch'; import Input from '@material-ui/core/Input'; import YAML from 'yaml' import {Link} from 'react-router-dom'; import Breadcrumbs from '@material-ui/core/Breadcrumbs'; import ReactJson from 'react-json-view' import Chip from '@material-ui/core/Chip'; import CachedIcon from '@material-ui/icons/Cached'; import CloudDownloadIcon from '@material-ui/icons/CloudDownload'; import PublishIcon from '@material-ui/icons/Publish'; import CloudDownload from '@material-ui/icons/CloudDownload'; import EditIcon from '@material-ui/icons/Edit'; import DeleteIcon from '@material-ui/icons/Delete'; import { useAlert } from "react-alert"; import Dialog from '@material-ui/core/Dialog'; import DialogTitle from '@material-ui/core/DialogTitle'; import DialogActions from '@material-ui/core/DialogActions'; import DialogContent from '@material-ui/core/DialogContent'; import CircularProgress from '@material-ui/core/CircularProgress'; const surfaceColor = "#27292D" const inputColor = "#383B40" // Parses JSON data into keys that can be used everywhere :) export const GetParsedPaths = (inputdata, basekey) => { const splitkey = " => " var parsedValues = [] for (const [key, value] of Object.entries(inputdata)) { // Check if loop or JSON const extra = basekey.length > 0 ? splitkey : "" const basekeyname = `${basekey.slice(1,basekey.length).split(".").join(splitkey)}${extra}${key}` if (typeof(value) === 'object') { if (Array.isArray(value)) { // Check if each item is object parsedValues.push({"type": "object", "name": basekeyname, "autocomplete": `${basekey}.${key}`}) parsedValues.push({"type": "list", "name": `${basekeyname}${splitkey}list`, "autocomplete": `${basekey}.${key}.#`}) // Only check the first. This would be probably be dumb otherwise. for (var subkey in value) { if (typeof(value) === 'object') { const returnValues = GetParsedPaths(value[subkey], `${basekey}.${key}.#`) for (var subkey in returnValues) { parsedValues.push(returnValues[subkey]) } } // Don't need else as # (all items) is already defined before the loop break } //console.log(key+" is array") } else { parsedValues.push({"type": "object", "name": basekeyname, "autocomplete": `${basekey}.${key}`}) const returnValues = GetParsedPaths(value, `${basekey}.${key}`) for (var subkey in returnValues) { parsedValues.push(returnValues[subkey]) } } } else { parsedValues.push({"type": "value", "name": basekeyname, "autocomplete": `${basekey}.${key}`, "value": value,}) } } return parsedValues } const Apps = (props) => { const { globalUrl, isLoggedIn, isLoaded } = props; //const [workflows, setWorkflows] = React.useState([]); const baseRepository = "https://github.com/frikky/shuffle-apps" const alert = useAlert() const [selectedApp, setSelectedApp] = React.useState({}); const [firstrequest, setFirstrequest] = React.useState(true) const [apps, setApps] = React.useState([]) const [filteredApps, setFilteredApps] = React.useState([]) const [validation, setValidation] = React.useState(false) const [isLoading, setIsLoading] = React.useState(false) const [appSearchLoading, setAppSearchLoading] = React.useState(false) const [selectedAction, setSelectedAction] = React.useState({}) const [searchBackend, setSearchBackend] = React.useState(false) const [openApi, setOpenApi] = React.useState("") const [openApiData, setOpenApiData] = React.useState("") const [appValidation, setAppValidation] = React.useState("") const [loadAppsModalOpen, setLoadAppsModalOpen] = React.useState(false); const [deleteModalOpen, setDeleteModalOpen] = React.useState(false); const [openApiModal, setOpenApiModal] = React.useState(false); const [openApiModalType, setOpenApiModalType] = React.useState(""); const [openApiError, setOpenApiError] = React.useState("") const [field1, setField1] = React.useState("") const [field2, setField2] = React.useState("") const { start, stop } = useInterval({ duration: 5000, startImmediate: false, callback: () => { getApps() } }); useEffect(() => { if (apps.length <= 0 && firstrequest) { document.title = "Shuffle - Apps" if (!isLoggedIn && isLoaded) { window.location = "/login" } setFirstrequest(false) getApps() } }) const appViewStyle = { color: "#ffffff", width: "100%", display: "flex", margin: 20, } const paperAppStyle = { minHeight: 130, maxHeight: 130, minWidth: "100%", maxWidth: "100%", color: "white", backgroundColor: surfaceColor, cursor: "pointer", display: "flex", } const getApps = () => { fetch(globalUrl+"/api/v1/workflows/apps", { method: 'GET', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json', }, credentials: "include", }) .then((response) => { if (response.status !== 200) { console.log("Status not 200 for apps :O!") } return response.json() }) .then((responseJson) => { setApps(responseJson) setFilteredApps(responseJson) if (responseJson.length > 0) { setSelectedApp(responseJson[0]) if (responseJson[0].actions !== null && responseJson[0].actions.length > 0) { setSelectedAction(responseJson[0].actions[0]) } else { setSelectedAction({}) } } }) .catch(error => { alert.error(error.toString()) }); } const downloadApp = (inputdata) => { const id = inputdata.id alert.info("Downloading..") fetch(globalUrl+"/api/v1/apps/"+id+"/config", { method: 'GET', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json', }, credentials: "include", }) .then((response) => { if (response.status !== 200) { window.location.pathname = "/apps" } return response.json() }) .then((responseJson) => { if (!responseJson.success) { alert.error("Failed to download file") } else { const inputdata = YAML.parse(responseJson.body) const newpaths = {} Object.keys(inputdata["paths"]).forEach(function(key) { newpaths[key.split("?")[0]] = inputdata.paths[key] }) inputdata.paths = newpaths console.log("INPUT: ", inputdata) var name = inputdata.info.title name = name.replace(/ /g, "_", -1) name = name.toLowerCase() delete inputdata.id delete inputdata.editing const data = YAML.stringify(inputdata) var blob = new Blob( [ data ], { type: 'application/octet-stream' }) var url = URL.createObjectURL( blob ) var link = document.createElement( 'a' ) link.setAttribute( 'href', url ) link.setAttribute( 'download', `${name}.yaml` ) var event = document.createEvent( 'MouseEvents' ) event.initMouseEvent( 'click', true, true, window, 1, 0, 0, 0, 0, false, false, false, false, 0, null) link.dispatchEvent( event ) //link.parentNode.removeChild(link) } }) .catch(error => { console.log(error) alert.error(error.toString()) }); } // dropdown with copy etc I guess const appPaper = (data) => { var boxWidth = "2px" if (selectedApp.id === data.id) { boxWidth = "4px" } var boxColor = "orange" if (data.is_valid) { boxColor = "green" } var imageline = data.large_image.length === 0 ? {data.title} : {data.title} // FIXME - add label to apps, as this might be slow with A LOT of apps var newAppname = data.name newAppname = newAppname.replace("_", " ") newAppname = newAppname.charAt(0).toUpperCase()+newAppname.substring(1) var sharing = "public" if (!data.sharing) { sharing = "private" } var valid = "true" if (!data.valid) { valid = "false" } if (data.actions === null || data.actions.length === 0) { valid = "false" } var description = data.description const maxDescLen = 60 if (description.length > maxDescLen) { description = data.description.slice(0, maxDescLen)+"..." } return ( { if (selectedApp.id !== data.id) { setSelectedApp(data) console.log(data) if (data.actions !== undefined && data.actions !== null && data.actions.length > 0) { setSelectedAction(data.actions[0]) } else { setSelectedAction({}) } } }}> {imageline}

{newAppname}

{description}
Sharing: {sharing} , Valid: {valid}
{data.activated && data.private_id !== undefined && data.private_id.length > 0 && data.generated ? {downloadApp(data)}}> : null}
) } const dividerColor = "rgb(225, 228, 232)" const uploadViewPaperStyle = { minWidth: "100%", maxWidth: 662.5, color: "white", backgroundColor: surfaceColor, display: "flex", marginBottom: 10, } const UploadView = () => { //var imageline = selectedApp.large_image === undefined || selectedApp.large_image.length === 0 ? // // : // PICTURE // FIXME - add label to apps, as this might be slow with A LOT of apps var newAppname = selectedApp.name if (newAppname !== undefined && newAppname.length > 0) { newAppname = newAppname.replace("_", " ") newAppname = newAppname.charAt(0).toUpperCase()+newAppname.substring(1) } else { newAppname = "" } var description = selectedApp.description const editUrl = "/apps/edit/"+selectedApp.id const activateUrl = "/apps/new?id="+selectedApp.id var downloadButton = selectedApp.activated && selectedApp.private_id !== undefined && selectedApp.private_id.length > 0 && selectedApp.generated ? : null var editButton = selectedApp.activated && selectedApp.private_id !== undefined && selectedApp.private_id.length > 0 && selectedApp.generated ? : null var activateButton = selectedApp.generated && !selectedApp.activated ? : null var deleteButton = ((selectedApp.private_id !== undefined && selectedApp.private_id.length > 0 && selectedApp.generated) || (selectedApp.downloaded != undefined && selectedApp.downloaded == true)) && activateButton === null ? : null var imageline = selectedApp.large_image === undefined || selectedApp.large_image.length === 0 ? {selectedApp.title} : {selectedApp.title} const GetAppExample = () => { if (selectedAction.returns === undefined) { return null } var showResult = selectedAction.returns.example if (showResult === undefined || showResult === null || showResult.length === 0) { return null } var jsonvalid = true try { const tmp = String(JSON.parse(showResult)) if (!tmp.includes("{") && !tmp.includes("[")) { jsonvalid = false } } catch (e) { jsonvalid = false } // FIXME: In here -> parse the values into a list or something if (jsonvalid) { const paths = GetParsedPaths(JSON.parse(showResult), "") console.log("PATHS: ", paths) return (
{paths.map(data => { const circleSize = 10 return ( console.log(data.autocomplete)}> {data.name} ) })}
) } return (
Example return
{selectedAction.returns.example}
) } //fetch(globalUrl+"/api/v1/get_openapi/"+urlParams.get("id"), { var baseInfo = newAppname.length > 0 ?
{imageline}

{newAppname}

{description}

{activateButton} {downloadButton} {editButton} {deleteButton} {selectedApp.tags !== undefined && selectedApp.tags !== null ?
{selectedApp.tags.map(tag => { return ( ) })}
: null} {selectedApp.link.length > 0 ?

URL: {selectedApp.link}

: null}

ID: {selectedApp.id}

{selectedApp.privateId !== undefined && selectedApp.privateId.length > 0 ?

PrivateID: {selectedApp.privateId}

: null}
Actions {selectedApp.actions !== null && selectedApp.actions.length > 0 ? :
There are no actions defined for this app.
}
{selectedAction.parameters !== undefined && selectedAction.parameters !== null ?
Arguments {selectedAction.parameters.map(data => { var itemColor = "#f85a3e" if (!data.required) { itemColor = "#ffeb3b" } const circleSize = 10 return (
{data.name} ) })}
: null} {selectedAction.description !== undefined && selectedAction.description !== null && selectedAction.description.length > 0 ?
Action Description
{selectedAction.description}
: null}
: null return(

App Creator

How it works  - Security API's  - OpenAPI directory
Apps interact with eachother in workflows. They are created with the app creator, using OpenAPI specification or manually in python. Use the links above to find potential apps you're looking for using OpenAPI or make one from scratch. There's 1000+ available.
 OR 
{baseInfo}
) } const handleSearchChange = (search) => { if (apps === undefined || apps === null || apps.length === 0) { return } const searchfield = search.toLowerCase() const newapps = apps.filter(data => data.name.toLowerCase().includes(searchfield) || data.description.toLowerCase().includes(searchfield)) if ((newapps.length === 0 || searchBackend) && !appSearchLoading) { setAppSearchLoading(true) runAppSearch(searchfield) } else { setFilteredApps(newapps) } } const appView = isLoggedIn ?
1366 ? 1366 : 1200, margin: "auto",}}>

App upload

{selectedApp.activated && selectedApp.private_id !== undefined && selectedApp.private_id.length > 0 && selectedApp.generated ?

{selectedApp.name}

: null}

All apps

{isLoading ? : null} Search OpenAPI
} control={ { handleSearchChange("") setSearchBackend(!searchBackend)} } />} />
{ handleSearchChange(event.target.value) }} />
{apps.length > 0 ? filteredApps.length > 0 ?
{filteredApps.map(app => { return ( appPaper(app) ) })}
:

Try a broader search term, e.g. "http", "alert", "ticket" etc.

{appSearchLoading ? : null } :

No apps have been created, uploaded or downloaded yet. Click "Load existing apps" above to get the baseline. This may take a while as its building docker images.

}
: null // Load data e.g. from github const getSpecificApps = (url, forceUpdate) => { setValidation(true) setIsLoading(true) start() const parsedData = { "url": url, } if (field1.length > 0) { parsedData["field_1"] = field1 } if (field2.length > 0) { parsedData["field_2"] = field2 } parsedData["force_update"] = forceUpdate alert.success("Getting specific apps from your URL.") var cors = "cors" fetch(globalUrl+"/api/v1/apps/get_existing", { method: "POST", mode: "cors", headers: { 'Accept': 'application/json', }, body: JSON.stringify(parsedData), credentials: "include", }) .then((response) => { if (response.status === 200) { alert.success("Loaded existing apps!") } setIsLoading(false) stop() return response.json() }) .then((responseJson) => { console.log("DATA: ", responseJson) if (responseJson.reason !== undefined) { alert.error("Failed loading: "+responseJson.reason) } }) .catch(error => { console.log("ERROR: ", error.toString()) alert.error(error.toString()) }) } // Locally hotloads app from folder const hotloadApps = () => { alert.info("Hotloading apps from location in .env") setIsLoading(true) fetch(globalUrl+"/api/v1/apps/run_hotload", { mode: "cors", headers: { 'Accept': 'application/json', }, credentials: "include", }) .then((response) => { setIsLoading(false) if (response.status === 200) { alert.success("Hotloaded apps!") } return response.json() }) .then((responseJson) => { if (responseJson.reason !== undefined && responseJson.reason.length > 0) { alert.info("Hotloading: ", responseJson.reason) } }) .catch(error => { alert.error(error.toString()) }); } // Gets the URL itself (hopefully this works in most cases? // Will then forward the data to an internal endpoint to validate the api const validateUrl = () => { setValidation(true) var cors = "cors" if (openApi.includes("localhost")) { cors = "no-cors" } fetch(openApi, { method: "GET", mode: "cors", }) .then((response) => { response.text().then(function (text) { validateOpenApi(text) }) }) .catch(error => { alert.error(error.toString()) }); } const deleteApp = (appId) => { alert.info("Attempting to delete app") fetch(globalUrl+"/api/v1/apps/"+appId, { method: 'DELETE', headers: { 'Accept': 'application/json', }, credentials: "include", }) .then((response) => { if (response.status === 200) { alert.success("Successfully deleted app") getApps() } else { alert.error("Failed deleting app") } }) .catch(error => { alert.error(error.toString()) }); } const runAppSearch = (searchterm) => { const data = {"search": searchterm} fetch(globalUrl+"/api/v1/apps/search", { method: 'POST', headers: { 'Accept': 'application/json', }, body: JSON.stringify(data), credentials: "include", }) .then((response) => { setAppSearchLoading(false) return response.json() }) .then((responseJson) => { //console.log(responseJson) if (responseJson.success) { if (responseJson.reason !== undefined && responseJson.reason.length > 0) { setFilteredApps(responseJson.reason) } } }) .catch(error => { alert.error(error.toString()) }); } const validateRemote = () => { setValidation(true) fetch(globalUrl+"/api/v1/get_openapi_uri", { method: 'POST', headers: { 'Accept': 'application/json', }, body: JSON.stringify(openApi), credentials: "include", }) .then((response) => { return response.text() }) .then((responseText) => { validateOpenApi(responseText) setValidation(false) }) .catch(error => { alert.error(error.toString()) }); } const escapeApiData = (apidata) => { console.log(apidata) try { return JSON.stringify(JSON.parse(apidata)) } catch(error) { console.log("JSON DECODE ERROR - TRY YAML") } try { return JSON.stringify(YAML.parse(apidata)) } catch(error) { console.log("YAML DECODE ERROR - TRY SOMETHING ELSE?: "+error) setOpenApiError(error) } return "" } // Sends the data to backend, which should return a version 3 of the same API // If 200 - continue, otherwise, there's some issue somewhere const validateOpenApi = (openApidata) => { const newApidata = escapeApiData(openApidata) if (newApidata === "") { return } fetch(globalUrl+"/api/v1/validate_openapi", { method: 'POST', headers: { 'Accept': 'application/json', }, body: newApidata, credentials: "include", }) .then((response) => { return response.json() }) .then((responseJson) => { setValidation(false) if (responseJson.success) { setAppValidation(responseJson.id) } else { if (responseJson.reason !== undefined) { setOpenApiError(responseJson.reason) } alert.error("An error occurred in the response") } }) .catch(error => { alert.error(error.toString()) }); } const redirectOpenApi = () => { window.location.href = "/apps/new?id="+appValidation } const handleGithubValidation = (forceUpdate) => { getSpecificApps(openApi, forceUpdate) setLoadAppsModalOpen(false) } const deleteModal = deleteModalOpen ? { setDeleteModalOpen(false) }} PaperProps={{ style: { backgroundColor: surfaceColor, color: "white", minWidth: 500, }, }} >
Are you sure?
Some workflows may stop working.
: null const circularLoader = validation ? : null const appsModalLoad = loadAppsModalOpen ? { setOpenApi("") setLoadAppsModalOpen(false) setField1("") setField2("") }} PaperProps={{ style: { backgroundColor: surfaceColor, color: "white", minWidth: "800px", minHeight: "320px", }, }} >
Load from github repo
Repository (supported: github, gitlab, bitbucket) setOpenApi(e.target.value)} placeholder="https://github.com/frikky/shuffle-apps" fullWidth /> Authentication (optional - private repos etc):
setField1(e.target.value)} type="username" placeholder="Username / APIkey (optional)" fullWidth /> setField2(e.target.value)} type="password" placeholder="Password (optional)" fullWidth />
{circularLoader}
: null const errorText = openApiError.length > 0 ?
Error: {openApiError}
: null const modalView = openApiModal ? {setOpenApiModal(false)}} PaperProps={{ style: { backgroundColor: surfaceColor, color: "white", minWidth: "800px", minHeight: "320px", }, }} >
Create a new integration
Paste in the URI for the OpenAPI { setOpenApiError("") validateRemote() }}>Validate }} onChange={e => setOpenApi(e.target.value)} helperText={
Must point to a version 2 or 3 specification.
} placeholder="OpenAPI URI" fullWidth />
Example:
https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v2.0/json/uber.json

or paste the yaml/JSON directly below

{ setOpenApiError("") validateOpenApi(openApiData) }}>Validate data }} onChange={e => setOpenApiData(e.target.value)} helperText={
Must point to a version 2 or 3 specification.
} placeholder="OpenAPI text" fullWidth /> {errorText} {circularLoader}
: null const loadedCheck = isLoaded && !firstrequest ?
{appView} {modalView} {appsModalLoad} {deleteModal}
:
// Maybe use gridview or something, idk return loadedCheck } export default Apps