mistaox wrote:This scenario need not be that complicated.
Each subsonic instance should have its own web service that spits out XML data that can be interpreted by other instances.
Simple!
Here is my basic concept so far:
The acegi-security component for Basic Authentication is already there when I look at the applicationContext-security.xml. I think the "/podcast" link uses the basic authentication right now.
So this is basically already solved. But the server should be using SSL so no user/password information is send unencrypted.
If this is not enough there is the possibility to use the digest authentication also provided by the acegi-security component.
Internal settings:
The admin needs the possibility to add additional servers (complete link as:
http://some.server.org:9009/subsonic/) so uri and port as well as content of subsonic service are know.
Then he also needs to add user/pass for each server and if the server should be searchable for general users of this subsonic.
This would allow the admin to use the extended search while the general users search would not be extended to this kind of linked servers.
On the user side the user has a checkbox that allow to "Allow extended search (linked servers)"
Visible changes at the search dialog:
Finally at the search dialog at the top I wouldn't change anything.
But the search window that is shown in the central frame will get an additional search button called "extended search" (if the user is allowed to use this extended search - see above). If you click that one, the search request will be send to all servers added by the admin and which are marked at the config dialog to be used for extended use (again see above).
Service code:
What I've not yet fully checked is the the current search code and how this has to be implemented.
I've never used Spring before so I need to look a little bit longer at the code. So far it still looks easy to do.
Any comments?
Edit: Ok, I was kind of bored and began implementing the extended search.
I already added most of the visible stuff except for the real search request send to the other servers. There are some errors I need to correct as I've not really tested my current implementation. The storage stuff for the class ExtendedSearchServers (very similar to net.sourceforge.subsonic.domain.MusicFolder except for other servers) is not yet fully completed. I handle creating and deleting the servers as you can create and delete music folders (see "settings" --> "music folders") except you specify the base url, username, password and if it's enabled for admins only or also users.
As I need to work on the really important stuff the next two days I should be able to add some screenshots on Thursday.
Edit2: Here are already two of three possible screenshots:
There is an error (no action handled) so at the moment I can't store the extended servers specified.
This is basically how it looks (delete button would show up when the entry is actually stored):
It's possible to store the user setting to give the user the "extendedSearchRole".
Edit3: Ok, here is the new search window.
The "Extended search" button only shows up if the user has the Admin-Role or the ExtendedSearch-Role (I might change that slightly until the search is ready).
I've added this information to the SearchCommand class so I can access this at the search.jsp:
The actual search on other servers is not yet implemented!
Anyone willing to help?
There will be most likely some changes until it's complete.
The strings shown are all in the resource bundle so nothing is hardcoded into the jsp files.