dmarc-srg icon indicating copy to clipboard operation
dmarc-srg copied to clipboard

SUGESTION: Import domains from webhosting control panels

Open ghost opened this issue 3 years ago • 3 comments

Would be a nice feature if you can add options to import the domains from the control panels using their API. Almost all control panels allow to curl the a domain list using their API. We won't need to type in hundreds or thousands of domains on the control panel or do an export to add these domains to the conf.php. It would simply import them automatically using the cron.

What do you think?

ghost avatar Oct 06 '22 07:10 ghost

This is a good idea. But there are probably many control panels with their own API, and I do not use any of them. It is quite difficult to write and debug usage unknown APIs. Maybe you had in mind the import of domains from some standard format, like CSV?

By the way: Do you know that domains can be automatically added to the database by using allowed_domains option in the config file?

liuch avatar Oct 07 '22 19:10 liuch

This is a good idea. But there are probably many control panels with their own API, and I do not use any of them. It is quite difficult to write and debug usage unknown APIs. Maybe you had in mind the import of domains from some standard format, like CSV?

By the way: Do you know that domains can be automatically added to the database by using allowed_domains option in the config file?

All APIs have 1 thing in common: They can be queried viy curl. So, if you add a form to ask for:

  • Full API link to query the domains
  • API credentials

It should be enough for the system to query the control panels.

  • No, I didn't know I could add automatically domains with that option. ;-)

ghost avatar Oct 07 '22 20:10 ghost

I see at least two problems:

  1. API can use a temporary token that is passed after authentication.
  2. The complexity of processing the result. You need to know the response format and its structure for each control panel to extract the domain name.

It seems to me more reasonable to do this: your script retrieves a list of domains through the API and passes it as CSV to my script through a temporary file or pipe to import your domains to the database.

liuch avatar Oct 08 '22 14:10 liuch