{"id":16062451,"url":"https://github.com/w4/zpan","last_synced_at":"2025-11-13T14:02:41.840Z","repository":{"id":69926355,"uuid":"61431383","full_name":"w4/zpan","owner":"w4","description":":musical_note: Radio DJ management panel with vBulletin integration, book time in to DJ, host events and take requests from your listeners.","archived":false,"fork":false,"pushed_at":"2017-11-12T09:22:41.000Z","size":118,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-22T17:48:30.485Z","etag":null,"topics":["control-panel","radio","shoutcast"],"latest_commit_sha":null,"homepage":"","language":"PHP","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/w4.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":"2016-06-18T11:55:53.000Z","updated_at":"2020-02-16T23:49:27.000Z","dependencies_parsed_at":"2023-03-03T20:30:25.151Z","dependency_job_id":null,"html_url":"https://github.com/w4/zpan","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/w4/zpan","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/w4%2Fzpan","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/w4%2Fzpan/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/w4%2Fzpan/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/w4%2Fzpan/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/w4","download_url":"https://codeload.github.com/w4/zpan/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/w4%2Fzpan/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284227494,"owners_count":26968592,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-13T02:00:06.582Z","response_time":61,"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":["control-panel","radio","shoutcast"],"created_at":"2024-10-09T04:40:42.631Z","updated_at":"2025-11-13T14:02:41.824Z","avatar_url":"https://github.com/w4.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zpan\n\nZpan is a beautiful radio management control panel written using Laravel. It has the following features:\n\n- \"Connection Info\" page for DJs\n- Request line\n  - Bans by IP\n- Radio timetable (by user's timezone)\n- Events\n  - Events require approval from a manager (or admin)\n- vBulletin integration (you need a vBulletin users database to authenticate users from - shows the user's display name globally)\n\n## API Endpoints\n\n### GET /api/dj-says\n\nResponse:\n\n```json\n{\n  \"dj\": \"\u003cdiv style=\\\"color: red;\\\"\u003eJordan Doyle\u003c/div\u003e\",\n  \"msg\": \"Welcome to the radio!\"\n}\n```\n\n### GET /api/timetable\n\nResponse:\n\n```json\n[\n  {\n    \"name\": \"Monday\",\n    \"0\": null,\n    \"1\": null,\n    \"2\": null,\n    ...\n    \"13\": \"\u003cdiv style=\\\"color: red\\\"\u003eJordan Doyle\u003c/div\u003e\",\n    \"14\": \"Jordan Doyle\",\n    \"15\": null\n    ...\n  },\n  {\n    \"name\": \"Tuesday\",\n    \"0\": null,\n    \"1\": null,\n    ...\n    \"10\": \"10am Tuesdays\",\n    \"11\": null,\n    ...\n  }\n]\n```\n\n### GET /api/event/all\n\nResponse:\n\n```json\n[\n  {\n    \"name\": \"Monday\",\n    \"0\": null,\n    \"1\": null,\n    \"2\": null,\n    ...\n    \"13\": \"\u003cdiv style=\\\"color: red\\\"\u003eThe 1pm Event\u003c/div\u003e\",\n    \"15\": null\n  },\n  ...\n]\n```\n\n### GET /api/event/current\n\nResponse:\n\n```json\n{\n  \"id\": 10,\n  \"name\": \"\u003cdiv\u003eJordan Doyle\u003c/div\u003e\",\n  \"type\": \"Falling Furni\",\n  \"room\": 123456789,\n  \"booked\": true\n}\n```\n\nOR\n\n```json\n{\n  \"booked\": false\n}\n```\n\n\n\n### GET /api/stats\n\nResponse:\n\n```json\n{\n  \"listeners\": 32,\n  \"raw_dj\": \"Jordan\",\n  \"dj\": \"\u003cspan style=\\\"color: red\\\"\u003eJordan\u003c/span\u003e\",\n  \"habbo\": \"jordanpotter\",\n  \"artist\": \"Aystar\",\n  \"song\": \"Behind Barz Freestyle\"\n}\n```\n\nOR\n\n```json\n{\n  \"status\": false\n}\n```\n\n\n\n### POST /api/request\n\nRequest:\n\n```json\n{\n  \"name\": \"Dave The Requester\",\n  \"request\": \"Hey can you play Cotton Eyed Joe please?\"\n}\n```\n\nResponse:\n\n```json\n{\n  \"type\": \"success\",\n  \"msg\": \"Successfully submitted your request. We'll let the DJ know!\"\n}\n```\n\n### Installation\n\nYou must configure the [groups](https://github.com/w4/zpan/blob/master/app/Models/Group.php) to match your vBulletin setup. Then copy `.env.example` to `.env` and configure.\n\nYou can then run the migrations and gulp and you're ready to go!\n\n```bash\nphp artisan migrate\ngulp\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fw4%2Fzpan","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fw4%2Fzpan","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fw4%2Fzpan/lists"}