Skip to content

Commit

Permalink
implemented ynetSearch.java to allow ajax cross domain search (e.g. s…
Browse files Browse the repository at this point in the history
…ciencenet) for YaCy-UI...

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4800 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
apfelmaennchen committed May 14, 2008
1 parent 78087da commit 37505c0
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 2 deletions.
94 changes: 94 additions & 0 deletions htroot/xml/util/ynetSearch.java
@@ -0,0 +1,94 @@
package xml.util;
// /yacy/user/ui/ynetSearch.java
// -------------------------------
// part of the AnomicHTTPD caching proxy
// (C) by Michael Peter Christen; mc@anomic.de
// first published on http://www.anomic.de
// Frankfurt, Germany, 2004, 2005
//
// last major change: 27.12.2005
// this file is contributed by Alexander Schier
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// Using this software in any meaning (reading, learning, copying, compiling,
// running) means that you agree that the Author(s) is (are) not responsible
// for cost, loss of data or any harm that may be caused directly or indirectly
// by usage of this softare or this documentation. The usage of this software
// is on your own risk. The installation and usage (starting/running) of this
// software may allow other people or application to access your computer and
// any attached devices and is highly dependent on the configuration of the
// software which must be done by the user of the software; the author(s) is
// (are) also not responsible for proper configuration and usage of the
// software, even if provoked by documentation provided together with
// the software.
//
// Any changes to this file according to the GPL as documented in the file
// gpl.txt aside this file in the shipment you received can be done to the
// lines that follows this copyright notice here, but changes must not be
// done inside the copyright notive above. A re-distribution must contain
// the intact and unchanged copyright notice.
// Contributions and changes to the program code must be marked as such.

// You must compile this file with
// javac -classpath .:../classes IndexCreate_p.java
// if the shell's current path is HTROOT

//package xml.bookmarks.tags;

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Scanner;

import de.anomic.http.httpHeader;
import de.anomic.plasma.plasmaSwitchboard;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;

public class ynetSearch {

public static serverObjects respond(httpHeader header, serverObjects post, serverSwitch<?> env) {
plasmaSwitchboard switchboard = (plasmaSwitchboard) env;
boolean isAdmin=switchboard.verifyAuthentication(header, true);
serverObjects prop = new serverObjects();

if(post != null){
if(!isAdmin){
// force authentication if desired
if(post.containsKey("login")){
prop.put("AUTHENTICATE","admin log-in");
}
} else {
InputStream is = null;
try {
String s = post.get("url")+"&search="+post.get("search")+"&count="+post.get("count")+"&offset="+post.get("offset");
URL url = new URL(s);
is = url.openStream();
String httpout = new Scanner(is).useDelimiter( "\\Z" ).next();
prop.put("http", httpout);
}
catch ( Exception e ) {
prop.put("url", "error!");
}
finally {
if ( is != null )
try { is.close(); } catch ( IOException e ) { }
}
}
}
return prop;
}
}
1 change: 1 addition & 0 deletions htroot/xml/util/ynetSearch.xml
@@ -0,0 +1 @@
#[http]#
2 changes: 1 addition & 1 deletion htroot/yacy/ui/index.html
Expand Up @@ -141,7 +141,7 @@ <h3>YaCy Search</h3>
<option value="/yacysearch.rss?resource=global" selected="selected">freeworld</option>
<option value="/yacysearch.rss?resource=local" >local peer</option>
<option value="ymarks" >bookmarks</option>
<option value="http://sciencenet.fzk.de:8080/yacysearch.rss?resource=global" >sciencenet</option>
<option value="/yacy/ui/ynetSearch.xml?login=&url=http://sciencenet.fzk.de:8080/yacysearch.rss?resource=global" >sciencenet</option>
</select>
</p>
</form>
Expand Down
2 changes: 1 addition & 1 deletion htroot/yacy/ui/sidebar/sidebar.html
Expand Up @@ -7,7 +7,7 @@
});
$.ajax({
type: "GET",
url: "/xml/bookmarks/tags/get.xml?login=&top=25&sort=size",
url: "/xml/bookmarks/tags/get.xml?login=true&top=25&sort=alpha",
dataType: "xml",
success: function(xml) {
$(xml).find('tag').each(function(){
Expand Down

0 comments on commit 37505c0

Please sign in to comment.