/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package neembuu.uploader.uploaders; import shashaank.smallmodule.SmallModule; import neembuu.uploader.interfaces.Uploader; import neembuu.uploader.interfaces.Account; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import neembuu.uploader.accounts.YouWatchAccount; import neembuu.uploader.exceptions.NUException; import neembuu.uploader.exceptions.uploaders.NUMaxFileSizeException; import neembuu.uploader.httpclient.NUHttpClient; import neembuu.uploader.httpclient.httprequest.NUHttpPost; import neembuu.uploader.interfaces.UploadStatus; import neembuu.uploader.interfaces.abstractimpl.AbstractUploader; import neembuu.uploader.uploaders.common.StringUtils; import neembuu.uploader.utils.CookieUtils; import neembuu.uploader.utils.NUHttpClientUtils; import neembuu.uploader.utils.NULogger; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.client.CookieStore; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.protocol.ClientContext; import org.apache.http.entity.mime.HttpMultipartMode; import org.apache.http.entity.mime.MultipartEntity; import org.apache.http.entity.mime.content.StringBody; import org.apache.http.impl.client.BasicCookieStore; import org.apache.http.message.BasicNameValuePair; import org.apache.http.protocol.BasicHttpContext; import org.apache.http.protocol.HttpContext; import org.apache.http.util.EntityUtils; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; /** * * @author MNidhal */ @SmallModule( exports={YouWatch.class,YouWatchAccount.class}, interfaces={Uploader.class,Account.class}, name="YouWatch.org" ) public class YouWatch extends AbstractUploader{ YouWatchAccount youWatchAccount = (YouWatchAccount) getAccountsProvider().getAccount("YouWatch.org"); private final HttpClient httpclient = NUHttpClient.getHttpClient(); private HttpContext httpContext = new BasicHttpContext(); private HttpResponse httpResponse; private NUHttpPost httpPost; private CookieStore cookieStore; private String responseString; private Document doc; private String uploadURL; private String userType; private String sessionID = ""; private String sv_id = ""; private String disk_id = ""; private String downloadlink = ""; private String deletelink = ""; public YouWatch() { downURL = UploadStatus.PLEASEWAIT.getLocaleSpecificString(); delURL = UploadStatus.PLEASEWAIT.getLocaleSpecificString(); host = "YouWatch.org"; if (youWatchAccount.loginsuccessful) { host = youWatchAccount.username + " | YouWatch.org"; } maxFileSizeLimit = 1073741824l; //1024 MB } private void initialize() throws Exception { responseString = NUHttpClientUtils.getData("http://youwatch.org?op=upload", httpContext); doc = Jsoup.parse(responseString); uploadURL = doc.select("form[name=file]").first().attr("action"); sv_id = doc.select("input[name=sess_id]").first().attr("value"); disk_id = doc.select("input[name=disk_id]").first().attr("value"); String uploadId = StringUtils.uuid(12, 10); uploadURL += uploadId + "&js_on=1&utype=" + userType + "&upload_type=file&disk_id=" + disk_id; } @Override public void run() { try { if (youWatchAccount.loginsuccessful) { userType = "reg"; httpContext = youWatchAccount.getHttpContext(); sessionID = CookieUtils.getCookieValue(httpContext, "xfsts"); maxFileSizeLimit = 3221225472l; //3GB } else { userType = "anon"; cookieStore = new BasicCookieStore(); httpContext.setAttribute(ClientContext.COOKIE_STORE, cookieStore); maxFileSizeLimit = 1073741824l; //1GB } if (file.length() > maxFileSizeLimit) { throw new NUMaxFileSizeException(maxFileSizeLimit, file.getName(), host); } uploadInitialising(); initialize(); httpPost = new NUHttpPost(uploadURL); MultipartEntity mpEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE); mpEntity.addPart("upload_type", new StringBody("file")); mpEntity.addPart("sess_id", new StringBody(sessionID)); //mpEntity.addPart("srv_tmp_url", new StringBody("http://ebox6.youwatch.org:8777/tmp")); mpEntity.addPart("srv_id", new StringBody(sv_id)); mpEntity.addPart("disk_id", new StringBody(disk_id)); //mpEntity.addPart("file_title", new StringBody("test vid")); //mpEntity.addPart("file_public", new StringBody("1")); mpEntity.addPart("tos", new StringBody("1")); mpEntity.addPart("file", createMonitoredFileBody()); mpEntity.addPart("submit_btn", new StringBody("Upload!")); httpPost.setEntity(mpEntity); NULogger.getLogger().log(Level.INFO, "executing request {0}", httpPost.getRequestLine()); NULogger.getLogger().info("Now uploading your file into YouWatch.org"); uploading(); httpResponse = httpclient.execute(httpPost, httpContext); responseString = EntityUtils.toString(httpResponse.getEntity()); doc = Jsoup.parse(responseString); final String fn = doc.select("textarea[name=fn]").first().text(); //Read the links gettingLink(); httpPost = new NUHttpPost("http://youwatch.org"); List<NameValuePair> formparams = new ArrayList<NameValuePair>(); formparams.add(new BasicNameValuePair("op", "upload_result")); formparams.add(new BasicNameValuePair("st", "OK")); formparams.add(new BasicNameValuePair("fn", fn)); UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams, "UTF-8"); httpPost.setEntity(entity); httpResponse = httpclient.execute(httpPost, httpContext); responseString = EntityUtils.toString(httpResponse.getEntity()); //FileUtils.saveInFile("YouWatch.html", responseString); doc = Jsoup.parse(responseString); downloadlink = doc.select("textarea").first().val(); deletelink = doc.select("textarea").eq(3).val(); NULogger.getLogger().log(Level.INFO, "Delete link : {0}", deletelink); NULogger.getLogger().log(Level.INFO, "Download link : {0}", downloadlink); downURL = downloadlink; delURL = deletelink; uploadFinished(); } catch(NUException ex){ ex.printError(); uploadInvalid(); } catch (Exception e) { Logger.getLogger(getClass().getName()).log(Level.SEVERE, null, e); uploadFailed(); } } }