Hey devs!
I am developing a website with only the catalog function. The catalog update operation is daily, so I need a module that allows me to automate the upload of a new catalog from a file hosted in a specific directory on a daily basis. The catalog is presented to me in XML, so I'll have to program some php function that runs on the server (independently of the module) with a watcher that every X minutes will check if the file has been updated at external ftp directory, if it's different, takes it, transform it and format a CSV and dump it to the directory where the module that I need take the upload file to upload the catalog.
Do you think this functionality is viable? And if there is, which module can I use it?
Thank you!