mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Check if the breed exists
This commit is contained in:
parent
3a9e0b2597
commit
c1b6fa9684
1 changed files with 151 additions and 2 deletions
|
@ -9,12 +9,161 @@ class DogCommand(rc.Command):
|
||||||
|
|
||||||
description: str = "Invia un cane della razza specificata in chat."
|
description: str = "Invia un cane della razza specificata in chat."
|
||||||
|
|
||||||
syntax: str = "[razza]"
|
syntax: str = "[razza|list]"
|
||||||
|
|
||||||
|
_breeds = [
|
||||||
|
"affenpinscher",
|
||||||
|
"african",
|
||||||
|
"airedale",
|
||||||
|
"akita",
|
||||||
|
"appenzeller",
|
||||||
|
"australian-shepherd",
|
||||||
|
"basenji",
|
||||||
|
"beagle",
|
||||||
|
"bluetick",
|
||||||
|
"borzoi",
|
||||||
|
"bouvier",
|
||||||
|
"boxer",
|
||||||
|
"brabancon",
|
||||||
|
"briard",
|
||||||
|
"buhund-norwegian",
|
||||||
|
"bulldog-boston",
|
||||||
|
"bulldog-english",
|
||||||
|
"bulldog-french",
|
||||||
|
"bullterrier-staffordshire",
|
||||||
|
"cairn",
|
||||||
|
"cattledog-australian",
|
||||||
|
"chihuahua",
|
||||||
|
"chow",
|
||||||
|
"clumber",
|
||||||
|
"cockapoo",
|
||||||
|
"collie-border",
|
||||||
|
"coonhound",
|
||||||
|
"corgi-cardigan",
|
||||||
|
"cotondetulear",
|
||||||
|
"dachshund",
|
||||||
|
"dalmatian",
|
||||||
|
"dane-great",
|
||||||
|
"deerhound-scottish",
|
||||||
|
"dhole",
|
||||||
|
"dingo",
|
||||||
|
"doberman",
|
||||||
|
"elkhound-norwegian",
|
||||||
|
"entlebucher",
|
||||||
|
"eskimo",
|
||||||
|
"finnish-lapphund",
|
||||||
|
"frise-bichon",
|
||||||
|
"germanshepherd",
|
||||||
|
"greyhound-italian",
|
||||||
|
"groenendael",
|
||||||
|
"havanese",
|
||||||
|
"hound-afghan",
|
||||||
|
"hound-basset",
|
||||||
|
"hound-blood",
|
||||||
|
"hound-english",
|
||||||
|
"hound-ibizan",
|
||||||
|
"hound-plott",
|
||||||
|
"hound-walker",
|
||||||
|
"husky",
|
||||||
|
"keeshond",
|
||||||
|
"kelpie",
|
||||||
|
"komondor",
|
||||||
|
"kuvasz",
|
||||||
|
"labrador",
|
||||||
|
"leonberg",
|
||||||
|
"lhasa",
|
||||||
|
"malamute",
|
||||||
|
"malinois",
|
||||||
|
"maltese",
|
||||||
|
"mastiff-bull",
|
||||||
|
"mastiff-english",
|
||||||
|
"mastiff-tibetan",
|
||||||
|
"mexicanhairless",
|
||||||
|
"mix",
|
||||||
|
"mountain-bernese",
|
||||||
|
"mountain-swiss",
|
||||||
|
"newfoundland",
|
||||||
|
"otterhound",
|
||||||
|
"ovcharka-caucasian",
|
||||||
|
"papillon",
|
||||||
|
"pekinese",
|
||||||
|
"pembroke",
|
||||||
|
"pinscher-miniature",
|
||||||
|
"pitbull",
|
||||||
|
"pointer-german",
|
||||||
|
"pointer-germanlonghair",
|
||||||
|
"pomeranian",
|
||||||
|
"poodle-miniature",
|
||||||
|
"poodle-standard",
|
||||||
|
"poodle-toy",
|
||||||
|
"pug",
|
||||||
|
"puggle",
|
||||||
|
"pyrenees",
|
||||||
|
"redbone",
|
||||||
|
"retriever-chesapeake",
|
||||||
|
"retriever-curly",
|
||||||
|
"retriever-flatcoated",
|
||||||
|
"retriever-golden",
|
||||||
|
"ridgeback-rhodesian",
|
||||||
|
"rottweiler",
|
||||||
|
"saluki",
|
||||||
|
"samoyed",
|
||||||
|
"schipperke",
|
||||||
|
"schnauzer-giant",
|
||||||
|
"schnauzer-miniature",
|
||||||
|
"setter-english",
|
||||||
|
"setter-gordon",
|
||||||
|
"setter-irish",
|
||||||
|
"sheepdog-english",
|
||||||
|
"sheepdog-shetland",
|
||||||
|
"shiba",
|
||||||
|
"shihtzu",
|
||||||
|
"spaniel-blenheim",
|
||||||
|
"spaniel-brittany",
|
||||||
|
"spaniel-cocker",
|
||||||
|
"spaniel-irish",
|
||||||
|
"spaniel-japanese",
|
||||||
|
"spaniel-sussex",
|
||||||
|
"spaniel-welsh",
|
||||||
|
"springer-english",
|
||||||
|
"stbernard",
|
||||||
|
"terrier-american",
|
||||||
|
"terrier-australian",
|
||||||
|
"terrier-bedlington",
|
||||||
|
"terrier-border",
|
||||||
|
"terrier-dandie",
|
||||||
|
"terrier-fox",
|
||||||
|
"terrier-irish",
|
||||||
|
"terrier-kerryblue",
|
||||||
|
"terrier-lakeland",
|
||||||
|
"terrier-norfolk",
|
||||||
|
"terrier-norwich",
|
||||||
|
"terrier-patterdale",
|
||||||
|
"terrier-russell",
|
||||||
|
"terrier-scottish",
|
||||||
|
"terrier-sealyham",
|
||||||
|
"terrier-silky",
|
||||||
|
"terrier-tibetan",
|
||||||
|
"terrier-toy",
|
||||||
|
"terrier-westhighland",
|
||||||
|
"terrier-wheaten",
|
||||||
|
"terrier-yorkshire",
|
||||||
|
"vizsla",
|
||||||
|
"waterdog-spanish",
|
||||||
|
"weimaraner",
|
||||||
|
"whippet",
|
||||||
|
"wolfhound-irish",
|
||||||
|
]
|
||||||
|
|
||||||
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
|
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
|
||||||
breed = args.joined()
|
breed = args.joined()
|
||||||
if breed:
|
if breed:
|
||||||
url = f"https://dog.ceo/api/breed/{breed}/images/random"
|
if breed == "list":
|
||||||
|
await data.reply("\n".join(["ℹ️ Razze disponibili:", [f"[c]{breed}[/c]" for breed in self._breeds]]))
|
||||||
|
if breed in self._breeds:
|
||||||
|
url = f"https://dog.ceo/api/breed/{breed}/images/random"
|
||||||
|
else:
|
||||||
|
raise rc.InvalidInputError("Questa razza non è disponibile.\n")
|
||||||
else:
|
else:
|
||||||
url = f"https://dog.ceo/api/breeds/image/random"
|
url = f"https://dog.ceo/api/breeds/image/random"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue