mirror of
				https://github.com/pelican-eggs/eggs.git
				synced 2025-11-04 02:48:07 +00:00 
			
		
		
		
	Merge pull request #1058 from parkervcp/add/deno_generic
Add Deno Generic Egg
This commit is contained in:
		
						commit
						5aa1848f8f
					
				
							
								
								
									
										9
									
								
								bots/discord/deno/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								bots/discord/deno/README.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,9 @@
 | 
				
			|||||||
 | 
					# Deno generic
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### From their [site](https://deno.land/)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					This egg was designed to allow a user to pull their own deno repo.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					There is an option to allow a user to upload their own files to run a server.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					The startup configs and commands may need changing to actually function properly.
 | 
				
			||||||
							
								
								
									
										86
									
								
								bots/discord/deno/egg-deno-generic.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										86
									
								
								bots/discord/deno/egg-deno-generic.json
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,86 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					    "_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
 | 
				
			||||||
 | 
					    "meta": {
 | 
				
			||||||
 | 
					        "version": "PTDL_v1",
 | 
				
			||||||
 | 
					        "update_url": null
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "exported_at": "2021-03-30T00:48:40+00:00",
 | 
				
			||||||
 | 
					    "name": "Deno Generic",
 | 
				
			||||||
 | 
					    "author": "parker@parkervcp.com",
 | 
				
			||||||
 | 
					    "description": "A generic egg to run deno code.",
 | 
				
			||||||
 | 
					    "features": null,
 | 
				
			||||||
 | 
					    "images": [
 | 
				
			||||||
 | 
					        "quay.io\/parkervcp\/pterodactyl-images:base_debian"
 | 
				
			||||||
 | 
					    ],
 | 
				
			||||||
 | 
					    "file_denylist": [],
 | 
				
			||||||
 | 
					    "startup": ".\/deno run {{JS_FILE}}",
 | 
				
			||||||
 | 
					    "config": {
 | 
				
			||||||
 | 
					        "files": "{}",
 | 
				
			||||||
 | 
					        "startup": "{\r\n    \"done\": \"change this part\"\r\n}",
 | 
				
			||||||
 | 
					        "logs": "{}",
 | 
				
			||||||
 | 
					        "stop": "^C"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "scripts": {
 | 
				
			||||||
 | 
					        "installation": {
 | 
				
			||||||
 | 
					            "script": "#!\/bin\/bash\r\n# Deno Bot Installation Script\r\n#\r\n# Server Files: \/mnt\/server\r\n\r\napt update\r\napt install -y git curl jq file unzip\r\n\r\nmkdir -p \/mnt\/server\r\ncd \/mnt\/server\r\n\r\nif [ \"${USER_UPLOAD}\" == \"true\" ] || [ \"${USER_UPLOAD}\" == \"1\" ]; then\r\n    echo -e \"assuming user knows what they are doing have a good day.\"\r\n    exit 0\r\nfi\r\n\r\n## add git ending if it's not on the address\r\nif [[ ${GIT_ADDRESS} != *.git ]]; then\r\n    GIT_ADDRESS=${GIT_ADDRESS}.git\r\nfi\r\n\r\nif [ -z \"${USERNAME}\" ] && [ -z \"${ACCESS_TOKEN}\" ]; then\r\n    echo -e \"using anon api call\"\r\nelse\r\n    GIT_ADDRESS=\"https:\/\/${USERNAME}:${ACCESS_TOKEN}@$(echo -e ${GIT_ADDRESS} | cut -d\/ -f3-)\"\r\nfi\r\n\r\n## pull git js bot repo\r\nif [ \"$(ls -A \/mnt\/server)\" ]; then\r\n    echo -e \"\/mnt\/server directory is not empty.\"\r\n    if [ -d .git ]; then\r\n        echo -e \".git directory exists\"\r\n        if [ -f .git\/config ]; then\r\n            echo -e \"loading info from git config\"\r\n            ORIGIN=$(git config --get remote.origin.url)\r\n        else\r\n            echo -e \"files found with no git config\"\r\n            echo -e \"closing out without touching things to not break anything\"\r\n            exit 10\r\n        fi\r\n    fi\r\n\r\n    if [ \"${ORIGIN}\" == \"${GIT_ADDRESS}\" ]; then\r\n        echo \"pulling latest from github\"\r\n        git pull\r\n    fi\r\nelse\r\n    echo -e \"\/mnt\/server is empty.\\ncloning files into repo\"\r\n    if [ -z ${BRANCH} ]; then\r\n        echo -e \"cloning default branch\"\r\n        git clone ${GIT_ADDRESS} .\r\n    else\r\n        echo -e \"cloning ${BRANCH}'\"\r\n        git clone --single-branch --branch ${BRANCH} ${GIT_ADDRESS} .\r\n    fi\r\n\r\nfi\r\n\r\n## get deno\r\nGITHUB_PACKAGE=denoland\/deno\r\nMATCH=linux\r\n\r\n## get release info and download links\r\nLATEST_JSON=$(curl --silent \"https:\/\/api.github.com\/repos\/${GITHUB_PACKAGE}\/releases\/latest\")\r\nRELEASES=$(curl --silent \"https:\/\/api.github.com\/repos\/${GITHUB_PACKAGE}\/releases\")\r\n\r\nif [ -z \"${VERSION}\" ] || [ \"${VERSION}\" == \"latest\" ]; then\r\n    DOWNLOAD_URL=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url | grep -i ${MATCH})\r\nelse\r\n    VERSION_CHECK=$(echo ${RELEASES} | jq -r --arg VERSION \"${VERSION}\" '.[] | select(.tag_name==$VERSION) | .tag_name')\r\n    if [ \"${VERSION}\" == \"${VERSION_CHECK}\" ]; then\r\n        DOWNLOAD_LINK=$(echo ${RELEASES} | jq -r --arg VERSION \"${VERSION}\" '.[] | select(.tag_name==$VERSION) | .assets[].browser_download_url' | grep -i ${MATCH})\r\n    else\r\n        echo -e \"defaulting to latest release\"\r\n        DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url)\r\n    fi\r\nfi\r\n\r\nif [ ! -z \"${DOWNLOAD_URL}\" ]; then\r\n    if curl --output \/dev\/null --silent --head --fail ${DOWNLOAD_URL}; then\r\n        echo -e \"link is valid. setting download link to ${DOWNLOAD_URL}\"\r\n        DOWNLOAD_LINK=${DOWNLOAD_URL}\r\n    else\r\n        echo -e \"link is invalid closing out\"\r\n        exit 2\r\n    fi\r\nfi\r\n\r\ncurl -sSL $DOWNLOAD_LINK -o ${DOWNLOAD_LINK##*\/}\r\n\r\nFILETYPE=$(file -F ',' ${DOWNLOAD_LINK##*\/} | cut -d',' -f2 | cut -d' ' -f2)\r\nif [ \"$FILETYPE\" == \"gzip\" ]; then\r\n    tar xzvf ${DOWNLOAD_LINK##*\/}\r\nelif [ \"$FILETYPE\" == \"Zip\" ]; then\r\n    unzip -o ${DOWNLOAD_LINK##*\/}\r\nelif [ \"$FILETYPE\" == \"XZ\" ]; then\r\n    tar xvf ${DOWNLOAD_LINK##*\/}\r\nelse\r\n    echo -e \"unknown filetype. Exiting\"\r\n    exit 2\r\nfi\r\n\r\n## cleaning up downloaded file\r\nrm -f ${DOWNLOAD_LINK##*\/}\r\n\r\necho -e \"install complete\"\r\nexit 0",
 | 
				
			||||||
 | 
					            "container": "debian:buster-slim",
 | 
				
			||||||
 | 
					            "entrypoint": "bash"
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    "variables": [
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "name": "Git Username",
 | 
				
			||||||
 | 
					            "description": "Username to auth with git.",
 | 
				
			||||||
 | 
					            "env_variable": "USERNAME",
 | 
				
			||||||
 | 
					            "default_value": "",
 | 
				
			||||||
 | 
					            "user_viewable": true,
 | 
				
			||||||
 | 
					            "user_editable": true,
 | 
				
			||||||
 | 
					            "rules": "nullable|string"
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "name": "Git Access Token",
 | 
				
			||||||
 | 
					            "description": "Password to use with git.\r\n\r\nIt's best practice to use a Personal Access Token.\r\nhttps:\/\/github.com\/settings\/tokens\r\nhttps:\/\/gitlab.com\/-\/profile\/personal_access_tokens",
 | 
				
			||||||
 | 
					            "env_variable": "ACCESS_TOKEN",
 | 
				
			||||||
 | 
					            "default_value": "",
 | 
				
			||||||
 | 
					            "user_viewable": true,
 | 
				
			||||||
 | 
					            "user_editable": true,
 | 
				
			||||||
 | 
					            "rules": "nullable|string"
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "name": "Git Repo Address",
 | 
				
			||||||
 | 
					            "description": "GitHub Repo to clone\r\n\r\nI.E. https:\/\/github.com\/parkervcp\/repo_name",
 | 
				
			||||||
 | 
					            "env_variable": "GIT_ADDRESS",
 | 
				
			||||||
 | 
					            "default_value": "",
 | 
				
			||||||
 | 
					            "user_viewable": true,
 | 
				
			||||||
 | 
					            "user_editable": true,
 | 
				
			||||||
 | 
					            "rules": "nullable|string"
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "name": "User Uploaded Files",
 | 
				
			||||||
 | 
					            "description": "Skip all the install stuff if you are letting a user upload files.\r\n\r\n0 = false (default)\r\n1 = true",
 | 
				
			||||||
 | 
					            "env_variable": "USER_UPLOAD",
 | 
				
			||||||
 | 
					            "default_value": "0",
 | 
				
			||||||
 | 
					            "user_viewable": true,
 | 
				
			||||||
 | 
					            "user_editable": true,
 | 
				
			||||||
 | 
					            "rules": "required|bool"
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "name": "Git Branch",
 | 
				
			||||||
 | 
					            "description": "What branch to pull from github.\r\n\r\nDefault is blank to pull the repo default branch",
 | 
				
			||||||
 | 
					            "env_variable": "BRANCH",
 | 
				
			||||||
 | 
					            "default_value": "",
 | 
				
			||||||
 | 
					            "user_viewable": true,
 | 
				
			||||||
 | 
					            "user_editable": true,
 | 
				
			||||||
 | 
					            "rules": "nullable|string"
 | 
				
			||||||
 | 
					        },
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "name": "Bot js file",
 | 
				
			||||||
 | 
					            "description": "The JavaScript file to run",
 | 
				
			||||||
 | 
					            "env_variable": "JS_FILE",
 | 
				
			||||||
 | 
					            "default_value": "bot.js",
 | 
				
			||||||
 | 
					            "user_viewable": true,
 | 
				
			||||||
 | 
					            "user_editable": true,
 | 
				
			||||||
 | 
					            "rules": "required|string|max:20"
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    ]
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user