mikespub / synology
Synology API interface
v1.4.1
2024-08-21 16:46 UTC
Requires
- php: >=8.1
Requires (Dev)
- justinrainbow/json-schema: 6.x-dev
- vlucas/phpdotenv: ^5.6@dev
This package is auto-updated.
Last update: 2024-10-21 17:08:56 UTC
README
This is an update of https://github.com/zzarbi/synology
with new code standards and namespaces.
You will find some additional Tools here as well, including a Synology Web API Explorer using a basic REST API interface and generated swagger files.
This is a PHP Library that consume Synology APIs
-
SYNO.Api :
- connect
- disconnect
- getAvailableApi
-
SYNO.SynologyDriveServer :
- connect
- disconnect
- getConnection
- getShare
- getLog
-
SYNO.CloudStationServer :
- connect
- disconnect
- getConnection
- getLog
-
SYNO.DownloadStation :
- connect
- disconnect
- getInfo
- getConfig
- setConfig
- getScheduleConfig
- setScheduleConfig
- getTaskList
- getTaskInfo
- addTask
- deleteTask
- pauseTask
- resumeTask
- getStatistics
- getRssList
- refreshRss
- getRssFeedList
-
SYNO.AudioStation:
- connect
- disconnect
- getInfo
- getObjects
- getObjectInfo
- getObjectCover
- searchSong
-
SYNO.FileStation:
- connect
- disconnect
- getInfo
- getShares
- getObjectInfo
- getList
- search
- download
- createFolder
-
SYNO.VideoStation:
- connect
- disconnect
- getInfo
- getObjects
- searchObject
- listObjects
-
SYNO.SurveillanceStation:
- connect
- disconnect
- getInfo
- getCameraList
- getHomeModeInfo
- switchHomeMode
Usage for Synology Api:
$synology = new Synology\Api('192.168.10.5', 5000, 'http', 1); //$synology->activateDebug(); $synology->connect('admin', 'xxxx'); print_r($synology->getAvailableApi());
Usage for AudioStation:
$synology = new Synology\Applications\AudioStation('192.168.10.5', 5000, 'http', 1); $synology->connect('admin', 'xxxx'); print_r($synology->getInfo());