{"id":13895336,"url":"https://github.com/nelu/rutorrent-filemanager-share","last_synced_at":"2026-03-12T04:09:17.267Z","repository":{"id":41889045,"uuid":"224758496","full_name":"nelu/rutorrent-filemanager-share","owner":"nelu","description":"File share link plugin","archived":false,"fork":false,"pushed_at":"2024-10-23T20:42:17.000Z","size":90,"stargazers_count":5,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-24T08:30:55.474Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nelu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-29T02:00:45.000Z","updated_at":"2024-10-23T20:42:21.000Z","dependencies_parsed_at":"2024-10-23T23:51:15.228Z","dependency_job_id":"5581f9e4-f471-4e70-9070-84ad72640c46","html_url":"https://github.com/nelu/rutorrent-filemanager-share","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/nelu/rutorrent-filemanager-share","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nelu%2Frutorrent-filemanager-share","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nelu%2Frutorrent-filemanager-share/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nelu%2Frutorrent-filemanager-share/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nelu%2Frutorrent-filemanager-share/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nelu","download_url":"https://codeload.github.com/nelu/rutorrent-filemanager-share/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nelu%2Frutorrent-filemanager-share/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30415042,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T00:40:14.898Z","status":"online","status_checked_at":"2026-03-12T02:00:07.260Z","response_time":114,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-06T18:02:08.439Z","updated_at":"2026-03-12T04:09:12.260Z","avatar_url":"https://github.com/nelu.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# rutorrent-filemanager-share\nFile share link creation plugin for rutorrent filemanager.\n\nThis plugin is available both in the 'Files' and 'File Manager' tabs context menus\n\n### Features:\n - unique file download link\n - link password protection\n - link expire timer\n - downloads stats\n\n### Dependencies: \n - [rutorrent-filemanager](https://github.com/nelu/rutorrent-filemanager)\n plugin \n - openssl php extension\n \n ### Configuration\nPlugin configuration `conf.php`:\n \n ```php \n \u003c?php\n// duration \u0026 links limits\n// 0 = unlimited\n\n// max expire time for a share in hours\n$limits['duration'] = $_ENV['RU_FLM_SHARE_MAX_DURATION'] ?? 0; // 0 - unlimited\n\n// max links per user\n$limits['links'] = $_ENV['RU_FLM_SHARE_MAX_LINKS'] ?? 0; // 0 - unlimited\n\nreturn [\n    'limits' =\u003e $limits,\n\n    // whether a password is mandatory for link creation\n    'require_password' =\u003e false,\n\n    // url with the path where a symlink to share.php can be found\n    // example: http://mydomain.com/share.php\n    // relative url example\n    // 'endpoint' = '//'.$_SERVER['HTTP_HOST'].'/rutorrent/plugins/filemanager-share/share.php';\n    'endpoint' =\u003e $_ENV['RU_FLM_SHARE_ENDPOINT'] ?? '',\n\n    // key used for storing encrypted data\n    \"key\" =\u003e $_ENV['RU_FLM_SHARE_KEY'] ?? \"mycu570m3ncryp710nk3y\",\n\n    // automatically remove shares - only when removing the file or the containing directory\n    \"remove_share_on_file_delete\" =\u003e false,\n\n    // automatically remove expired shares - called only when removing\n    \"purge_expired_shares\" =\u003e true\n];\n ```\n   - `key` - the key used to store encrypted data like share passwords. CHANGE THE DEFAULT VALUE!\n   - `$limits['duration']` - max link expire time in hours if `$limits['nolimit']` is disabled\n   - `$limits['links']` - max number of links the user can create\n   - `require_password` - make password required for shares\n   - `endpoint` - a public  entrypoint (no htpasswd) where `share.php` is accessible. Should be a symlink to `plugins/filemanager-share/share.php`\n\n\nExample for `endpoint` config with htpasswd enabled:\n - rutorrent url (htpasswd): https://mydomain.com/rutorrent/\n - public url (no htpasswd): https://mydomain.com/share/ - where `/share/index.php` is a symlink to `rutorrent/plugins/filemanager-share/share.php`\n    ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnelu%2Frutorrent-filemanager-share","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnelu%2Frutorrent-filemanager-share","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnelu%2Frutorrent-filemanager-share/lists"}