| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <?php
- trait TransmissionHomepageItem
- {
- public function transmissionSettingsArray($infoOnly = false)
- {
- $homepageInformation = [
- 'name' => 'Transmission',
- 'enabled' => strpos('personal', $this->config['license']) !== false,
- 'image' => 'plugins/images/tabs/transmission.png',
- 'category' => 'Downloader',
- 'settingsArray' => __FUNCTION__
- ];
- if ($infoOnly) {
- return $homepageInformation;
- }
- $homepageSettings = [
- 'debug' => true,
- 'settings' => [
- 'Enable' => [
- $this->settingsOption('enable', 'homepageTransmissionEnabled'),
- $this->settingsOption('auth', 'homepageTransmissionAuth'),
- ],
- 'Connection' => [
- $this->settingsOption('url', 'transmissionURL', ['help' => 'Please do not included /web in URL. Please make sure to use local IP address and port - You also may use local dns name too.']),
- $this->settingsOption('blank'),
- $this->settingsOption('username', 'transmissionUsername'),
- $this->settingsOption('password', 'transmissionPassword'),
- $this->settingsOption('disable-cert-check', 'transmissionDisableCertCheck'),
- $this->settingsOption('use-custom-certificate', 'transmissionUseCustomCertificate'),
- ],
- 'Misc Options' => [
- $this->settingsOption('hide-seeding', 'transmissionHideSeeding'),
- $this->settingsOption('hide-completed', 'transmissionHideCompleted'),
- $this->settingsOption('refresh', 'transmissionRefresh'),
- $this->settingsOption('combine', 'transmissionCombine'),
- ],
- 'Test Connection' => [
- $this->settingsOption('blank', null, ['label' => 'Please Save before Testing']),
- $this->settingsOption('test', 'transmission'),
- ]
- ]
- ];
- return array_merge($homepageInformation, $homepageSettings);
- }
- public function testConnectionTransmission()
- {
- if (empty($this->config['transmissionURL'])) {
- $this->setAPIResponse('error', 'Transmission URL is not defined', 422);
- return false;
- }
- $digest = $this->qualifyURL($this->config['transmissionURL'], true);
- $passwordInclude = ($this->config['transmissionUsername'] != '' && $this->config['transmissionPassword'] != '') ? $this->config['transmissionUsername'] . ':' . rawurlencode($this->decrypt($this->config['transmissionPassword'])) . "@" : '';
- $url = $digest['scheme'] . '://' . $passwordInclude . $digest['host'] . $digest['port'] . $digest['path'] . '/rpc';
- try {
- $options = $this->requestOptions($this->config['transmissionURL'], $this->config['transmissionRefresh'], $this->config['transmissionDisableCertCheck'], $this->config['transmissionUseCustomCertificate']);
- $response = Requests::get($url, [], $options);
- if ($response->headers['x-transmission-session-id']) {
- $headers = array(
- 'X-Transmission-Session-Id' => $response->headers['x-transmission-session-id'],
- 'Content-Type' => 'application/json'
- );
- $data = array(
- 'method' => 'torrent-get',
- 'arguments' => array(
- 'fields' => array(
- "id", "name", "totalSize", "eta", "isFinished", "isStalled", "percentDone", "rateDownload", "status", "downloadDir", "errorString"
- ),
- ),
- 'tags' => ''
- );
- $response = Requests::post($url, $headers, json_encode($data), $options);
- if ($response->success) {
- $this->setAPIResponse('success', 'API Connection succeeded', 200);
- return true;
- } else {
- $this->setAPIResponse('error', 'Transmission Connect Function - Error: Unknown', 500);
- return false;
- }
- } else {
- $this->setLoggerChannel('Transmission')->warning('Could not get session ID');
- $this->setAPIResponse('error', 'Transmission Connect Function - Error: Could not get session ID', 500);
- return false;
- }
- } catch (Requests_Exception $e) {
- $this->setLoggerChannel('Transmission')->error($e);
- $this->setResponse(500, $e->getMessage());
- return false;
- }
- }
- public function transmissionHomepagePermissions($key = null)
- {
- $permissions = [
- 'main' => [
- 'enabled' => [
- 'homepageTransmissionEnabled'
- ],
- 'auth' => [
- 'homepageTransmissionAuth'
- ],
- 'not_empty' => [
- 'transmissionURL'
- ]
- ]
- ];
- return $this->homepageCheckKeyPermissions($key, $permissions);
- }
- public function homepageOrdertransmission()
- {
- if ($this->homepageItemPermissions($this->transmissionHomepagePermissions('main'))) {
- $loadingBox = ($this->config['transmissionCombine']) ? '' : '<div class="white-box homepage-loading-box"><h2 class="text-center" lang="en">Loading Download Queue...</h2></div>';
- $builder = ($this->config['transmissionCombine']) ? 'buildDownloaderCombined(\'transmission\');' : '$("#' . __FUNCTION__ . '").html(buildDownloader("transmission"));';
- return '
- <div id="' . __FUNCTION__ . '">
- ' . $loadingBox . '
- <script>
- // homepageOrdertransmission
- ' . $builder . '
- homepageDownloader("transmission", "' . $this->config['transmissionRefresh'] . '");
- // End homepageOrdertransmission
- </script>
- </div>
- ';
- }
- }
- public function getTransmissionHomepageQueue()
- {
- if (!$this->homepageItemPermissions($this->transmissionHomepagePermissions('main'), true)) {
- return false;
- }
- $digest = $this->qualifyURL($this->config['transmissionURL'], true);
- $passwordInclude = ($this->config['transmissionUsername'] != '' && $this->config['transmissionPassword'] != '') ? $this->config['transmissionUsername'] . ':' . rawurlencode($this->decrypt($this->config['transmissionPassword'])) . "@" : '';
- $url = $digest['scheme'] . '://' . $passwordInclude . $digest['host'] . $digest['port'] . $digest['path'] . '/rpc';
- try {
- $options = $this->requestOptions($this->config['transmissionURL'], $this->config['transmissionRefresh'], $this->config['transmissionDisableCertCheck'], $this->config['transmissionUseCustomCertificate']);
- $response = Requests::get($url, array(), $options);
- if ($response->headers['x-transmission-session-id']) {
- $headers = array(
- 'X-Transmission-Session-Id' => $response->headers['x-transmission-session-id'],
- 'Content-Type' => 'application/json'
- );
- $data = array(
- 'method' => 'torrent-get',
- 'arguments' => array(
- 'fields' => array(
- "id", "name", "totalSize", "eta", "isFinished", "isStalled", "percentDone", "rateDownload", "status", "downloadDir", "errorString", "addedDate"
- ),
- ),
- 'tags' => ''
- );
- $response = Requests::post($url, $headers, json_encode($data), $options);
- if ($response->success) {
- $torrentList = json_decode($response->body, true)['arguments']['torrents'];
- if ($this->config['transmissionHideSeeding'] || $this->config['transmissionHideCompleted']) {
- $filter = array();
- $torrents = array();
- if ($this->config['transmissionHideSeeding']) {
- array_push($filter, 6, 5);
- }
- if ($this->config['transmissionHideCompleted']) {
- array_push($filter, 0);
- }
- foreach ($torrentList as $key => $value) {
- if (!in_array($value['status'], $filter)) {
- $torrents[] = $value;
- }
- }
- } else {
- $torrents = json_decode($response->body, true)['arguments']['torrents'];
- }
- usort($torrents, function ($a, $b) {
- return $a["addedDate"] <=> $b["addedDate"];
- });
- $api['content']['queueItems'] = $torrents;
- $api['content']['historyItems'] = false;
- }
- } else {
- $this->setLoggerChannel('Transmission')->warning('Could not get session ID');
- $this->setAPIResponse('error', 'Transmission Connect Function - Error: Could not get session ID', 500);
- return false;
- }
- } catch (Requests_Exception $e) {
- $this->setLoggerChannel('Transmission')->error($e);
- $this->setResponse(500, $e->getMessage());
- return false;
- };
- $api['content'] = $api['content'] ?? false;
- $this->setAPIResponse('success', null, 200, $api);
- return $api;
- }
- }
|