前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Fuxa WebAPI文档

Fuxa WebAPI文档

作者头像
科控物联
发布2023-09-01 08:06:06
1.3K0
发布2023-09-01 08:06:06
举报
文章被收录于专栏:科控自动化

[开源]一款功能强大的基于web的组态软件--FUXA

结构图

FUXA_WebAPI

settings

Get application settings

GET

/api/settings

Parameters

c

Responses Example

Code: 200{“language” : “en” ,“ui Port” : 1881,“secureEnabled” : false,“tokenExpiresIn” : “1h” ,“smtp” : {...},}

Set application settings

POST

/api/settings

Parameters Example

{“language” : “en” ,“ui Port” : 1881,“secureEnabled” : false,“tokenExpiresIn” : “1h” ,

“smtp” : {...}}

Responses

Code: 200

Note

Saved as file in ‘server/_appdata/mysettings.json’

project

Get project property: server, devices, layout, views, charts, alarms settings, script

GET

/api/project

Parameters

None

Responses

Code: 200{“version” : “1.00” ,“server” : {...},“hm i” : {“layout” : {...},“views” : [...]},“devices” : {...},“charts” : [...],“graphs” : [...],“alarms” : [...],“notifications” : [...],“scripts” : [...],“texts” : [...],“plugin” : [...]}

Set project property

POST

/api/project

Parameters Example

{“version” : “1.00” ,“server” : {},“hm i” : {“layout” : {...},“views” : [{“MainView” : {...}]},“devices” : {},“charts” : [...],“graphs” : [...],“alarms” : [...],“notifications” : [...],“scripts” : [...],“texts” : [...],“plugin” : [...]}

Responses

Code: 200

Note

Used to build new project, clear all and set a new void project

Set project specific property: device, view, layout, charts, alarm, text

POST

/api/projectData

Parameters Example

{“cmd” : “” ,“data” : ...} cmd: ‘set-device’ , ‘del-device’data: {...}cmd: ‘set-view’ , ‘del-view’data: {...}cmd: ‘layout’data: {...}cmd: ‘charts’data: [...]cmd: ‘graphs’data: [...]cmd: ‘set-text’ , ‘del-text’data: {...}cmd: ‘set-alarm’ , ‘del-alarm’data: {...}cmd: ‘set-notification’ , ‘del-notification’data: {...}cmd: ‘set-script’ , ‘del-script’data: {...}

Responses

Code: 200

Note

In server are saved in tables: general, views devices, texts, alarms, notifications, scripts.The tables structure: name (string), value (string) all the same:● general name=charts/layout/plugin/version and value=data● views name=data.id (view) and value=data● devices name=data.id (device) and value=data● alarms name=data.name (alarm) and value=data● notifications name=data.id (notification) and value=data● scripts name=data.id (script) and value=data

Upload project

POST

/api/upload

Parameters Example

JSON file

Responses

Code: 200

device

Get device security property

GET

/api/device

Parameters Example

{“query” : “security” ,“name” : “My OPCUA”}

Responses

Code: 200{“mode” : “” ,“u id” : “username” ,“pwd” : “password” ,“client Id” : “123456”}

Set device security property

POST

/api/device

Parameters Example

{“query” : “security” ,“name” : “My OPCUA”“value” : {“mode” : “” ,“u id” : “username” ,“pwd” : “password” ,“client Id” : “123456”}}

Responses

Code: 200

alarm

Get active alarms list

GET

/api/alarms

Parameters

None

Responses

Code: 200[{“name” : “Alarm name” ,“type” : “”“ontime” : “” ,“offtime” : “” ,“acktime” : “” ,“status” : “” ,“text” : “” ,“group” : “” ,“bkcolor” : “” ,“color” : “” ,“toack” : “”

}]

Set ACK to active alarm

POST

/api/alarmack

Parameters

{“params” : “Alarm id”}

Responses

Code: 200

Note

‘Alarm id’ ‘is composed from name and type

token&user

Login and take the token

POST

/api/signin

Parameters

{“username” : “admin” ,“password” : “123456”}

Responses

Code: 200

Get users list

GET

/api/users

Parameters

None

Responses

Code: 200[{“username” : “username” ,“password” : “123456” ,“groups” : 3}]

Set user property

POST

/api/users

Parameters

{“username” : “username” ,“fullname” : “fullname” ,“password” : “123456” ,“groups” : 3}

Responses

Code: 200

Remove user

DELETE

/api/users

Parameters

{“param” : “username”}

Responses

Code: 200

plugins

Get installed plugin

GET

/api/plugins

Parameters

None

Responses

Code: 200[{“name” : “modbus-serial” ,“type” : “Modbus” ,“version” : “8.0.1” ,“current” : “8.0.1” ,“status” : “” ,“pkg” : true,“dinamic” : true}]

Install plugin

POST

/api/plugins

Parameters

{“name” : “modbus-serial” ,“type” : “Modbus” ,“version” : “8.0.1” ,“current” : “8.0.1” ,“status” : “” ,“pkg” : true,“dinamic” : true}

Responses

Code: 200

Remove plugin

DELETE

/api/plugins

Parameters

{“param” : “modbus-serial”}

Responses

Code: 200

daq

Get DAQ data

GET

/api/daq

Parameters

{“query” : {“gid” : “gauge id” ,“from” : “timestamp” ,“to” : “timestamp” ,“event” : “B” ,“sids” : [“tag id” , “” ]}}

Responses

Code: 200[{“id” : “tag id”“ts” : “timestamp” ,“value” : “12.5” ,}]

Note

Used to ask current or history tags value (DAQ):● ‘gid’ reference to the GUI component.● ‘timestamp’ milliseconds● ‘event’ can be ‘B’ or ‘F’ to step the range query in Back or Forward.● ‘sid’ list of tags id

logs

Get list of logs files

GET

/api/logsdir

Parameters

None

Responses

Code: 200[“fuxa.log” ,“fuxa1.log” ,“fuxa-err.log” ,] ...

Get log file content

GET

/api/logs

Parameters

{

“query” : {“file” : “fuxa1.log”}}

Responses

Download file content

sendmail

Send email

POST

/api/sendmail

Parameters

{“msg” : {“from” : “pippo@frangoteam.org” ,“to” : “ciccio@frangoteam.org” ,“subject” : “test” ,“text” : “content” ,“html” : “html-content” ,},“smtp” : {“host” : “blabla.smtp.org” ,“port” : 587,“mailsender” : “pippo@frangoteram.org” ,“username” : “username” ,“password” : “password” ,}}

Responses

Code: 200

Note

Used to send mail from frontend, ‘smtp’ is optional and used for configuring and testing.

runscript

Run script

POST

/api/runscript

Parameters

{“script” : {“id” : “script id” ,“name” : “script name” ,“code” : “script code” ,“parameters” : [{“name” : “param name” ,“type” : “value” ,“value” : “12.5”},{...}]}}

Responses

Code: 200

Note

Used to run scripts from frontend, ‘code’ and ‘name’ are optional and used for configuring and testing.

tag read & tag write

Get Tag value API

GET /api/getTagValue?ids=["t_2f47264f-b9e4451d"]

Host: localhost:1881

Content-Type: application/json

Cache-Control: no-cache

Set Tag value API

POST /api/setTagValue

Host: localhost:1881

Content-Type: application/json

Cache-Control: no-cache

代码语言:javascript
复制
{
    "tags":[
        {
            "id": "t_2f47264f-b9e4451d",
            "value": "22"
        },
        {
            "id": "t_ea53ed8d-60c5401c",
            "value": "1"
        }

    ]
}

本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2023-07-24,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 科控物联 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • [开源]一款功能强大的基于web的组态软件--FUXA
  • 结构图
  • settings
  • project
  • device
  • alarm
  • token&user
  • plugins
  • daq
  • logs
  • sendmail
  • runscript
  • tag read & tag write
    • Get Tag value API
      • Set Tag value API
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档