![]() |
Radio Stations and Images sync - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Feature requests (https://moodeaudio.org/forum/forumdisplay.php?fid=8) +--- Thread: Radio Stations and Images sync (/showthread.php?tid=1567) |
RE: Radio Stations and Images sync - Tim Curtis - 08-10-2019 (08-10-2019, 01:07 PM)TheOldPresbyope Wrote: @ghoeher Hi Kent, User added Radio logos were introduced in the 5.0 release and i think thats also when the type column was added to cfg_radio to help differentiate between user added and system pre-defined stations. To list out the user added stations run the query below. Change 'u; to 's' to list out the system pre-defined stations. User added stations must start at id > 499. Code: sqlite3 /var/local/www/db/moode-sqlite3.db "select * from cfg_radio where type='u'" I think when importing I'd first delete rows where type='u', then do a bulk import from a csv. This might avoid the need to check whether the stations already exist. For example: Code: sqlite3 /var/local/www/db/moode-sqlite3.db "DELETE FROM cfg_cfg_radio WHERE type='u'" The csv file looks like below Code: 1,http://strm112.1.fm/blues_mobile_mp3,1.FM - Blues Radio,s,local -Tim RE: Radio Stations and Images sync - ghoeher - 08-11-2019 Hi Tim, even if you addressed this to Kent in a first way - thanks for the explanation and your great support. Even with those SQL statements only, it would be much easier for me to migrate to a new image. Regarding the import - deleting "u"-type entries first would make a script easier to implement, but then it's always a kind of "initial" import. But if you - like Kent wrote - want to share your favorites also with someone else, deleting the "u" entries first is not an option. This is nothing essential (at least for me) but would be a nice "addon". But let's wait for Kent's script - I'm pretty sure it will do it's job perfect. RE: Radio Stations and Images sync - TheOldPresbyope - 08-11-2019 @Tim Curtis Yeah, I sussed out the schema sometime ago (for a while there was a comment in my code which said "I suppose 's' must stand for system). As it stands now, the script exports all entries tagged 'u'. I don't check the ID on export since that seemed redundant knowing your "add station" functionality. On import, your ID=499 divider as well as existing user-defines are observed en passant since my script lets sqlite3 autoincrement the ID just as yours does. I detest CSV so my script exports and imports the database entries as a JSON file. It's a verbose format but did I mention I detest CSV? My script doesn't clear out the existing user-defined stations because in my imagined scenarios the user may have already added some stations by hand. Seemed rude to squash them ![]() Regards, Kent RE: Radio Stations and Images sync - Tim Curtis - 08-11-2019 lol, CSV format can definitely be a pain. RE: Radio Stations and Images sync - TheOldPresbyope - 08-14-2019 See my post in FAQ and Guides Regards, Kent RE: Radio Stations and Images sync - Im bored - 08-21-2019 (08-11-2019, 01:06 PM)Tim Curtis Wrote: lol, CSV format can definitely be a pain. Tim is there any chance you could alter the permissions in your next release for the folder/var/www/images/radio-logos for the Pi user so that one can manually copy images into that folder, Please. Because at the moment it simply gives permission denied massage. RE: Radio Stations and Images sync - Tim Curtis - 08-21-2019 Thats something I'd leave up to the user. It's not a good practice for me to expand the scope of permissions on a directory unless it solves a generally applicable issue. RE: Radio Stations and Images sync - Im bored - 08-21-2019 (08-21-2019, 07:57 PM)Tim Curtis Wrote: Thats something I'd leave up to the user. It's not a good practice for me to expand the scope of permissions on a directory unless it solves a generally applicable issue. I tried to change that being the user with no success. Could you direct me how I can accomplish that on my system. pi@OutdoorSpeakers:/var/www/images $ chmod +rwx radio-logos/ chmod: changing permissions of 'radio-logos/': Operation not permitted RE: Radio Stations and Images sync - TheOldPresbyope - 08-21-2019 (08-21-2019, 08:13 PM)Im bored Wrote:(08-21-2019, 07:57 PM)Tim Curtis Wrote: Thats something I'd leave up to the user. It's not a good practice for me to expand the scope of permissions on a directory unless it solves a generally applicable issue. Well you can't change the permissions on a directory owned by root unless you execute the operation as superuser. But I'm still trying to figure out your report in the other thread. Are you working just with my scripts or also doing handwork on your own? That's likely to cause confusion. Regards, Kent RE: Radio Stations and Images sync - Im bored - 08-21-2019 (08-21-2019, 08:15 PM)TheOldPresbyope Wrote:(08-21-2019, 08:13 PM)Im bored Wrote:(08-21-2019, 07:57 PM)Tim Curtis Wrote: Thats something I'd leave up to the user. It's not a good practice for me to expand the scope of permissions on a directory unless it solves a generally applicable issue. I tried your script and since I wasn't having any luck with that I figured a manual way should still be available for me. |