parent
8f8f8fa7d7
commit
ae3d24f471
@ -1,70 +1,70 @@ |
|||||||
/* |
/* |
||||||
* Copyright (C) 2016 AriaLyy(https://github.com/AriaLyy/Aria)
|
* Copyright (C) 2016 AriaLyy(https://github.com/AriaLyy/Aria)
|
||||||
* |
* |
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
* you may not use this file except in compliance with the License. |
* you may not use this file except in compliance with the License. |
||||||
* You may obtain a copy of the License at |
* You may obtain a copy of the License at |
||||||
* |
* |
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
* |
* |
||||||
* Unless required by applicable law or agreed to in writing, software |
* Unless required by applicable law or agreed to in writing, software |
||||||
* distributed under the License is distributed on an "AS IS" BASIS, |
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
* See the License for the specific language governing permissions and |
* See the License for the specific language governing permissions and |
||||||
* limitations under the License. |
* limitations under the License. |
||||||
*/ |
*/ |
||||||
package com.arialyy.aria.core.common.ftp; |
package com.arialyy.aria.core.common.ftp; |
||||||
|
|
||||||
import android.text.TextUtils; |
import android.text.TextUtils; |
||||||
import com.arialyy.aria.core.FtpUrlEntity; |
import com.arialyy.aria.core.FtpUrlEntity; |
||||||
import com.arialyy.aria.core.inf.AbsTarget; |
import com.arialyy.aria.core.inf.AbsTarget; |
||||||
import com.arialyy.aria.core.inf.IFtpTarget; |
import com.arialyy.aria.core.inf.IFtpTarget; |
||||||
import com.arialyy.aria.util.ALog; |
import com.arialyy.aria.util.ALog; |
||||||
import java.net.Proxy; |
import java.net.Proxy; |
||||||
|
|
||||||
/** |
/** |
||||||
* Created by laoyuyu on 2018/3/9. |
* Created by laoyuyu on 2018/3/9. |
||||||
* ftp 委托 |
* ftp 委托 |
||||||
*/ |
*/ |
||||||
public class FtpDelegate<TARGET extends AbsTarget> implements IFtpTarget<TARGET> { |
public class FtpDelegate<TARGET extends AbsTarget> implements IFtpTarget<TARGET> { |
||||||
private static final String TAG = "FtpDelegate"; |
private static final String TAG = "FtpDelegate"; |
||||||
private TARGET mTarget; |
private TARGET mTarget; |
||||||
|
|
||||||
public FtpDelegate(TARGET target) { |
public FtpDelegate(TARGET target) { |
||||||
mTarget = target; |
mTarget = target; |
||||||
} |
} |
||||||
|
|
||||||
@Override public TARGET charSet(String charSet) { |
@Override public TARGET charSet(String charSet) { |
||||||
if (TextUtils.isEmpty(charSet)) { |
if (TextUtils.isEmpty(charSet)) { |
||||||
throw new NullPointerException("字符编码为空"); |
throw new NullPointerException("字符编码为空"); |
||||||
} |
} |
||||||
mTarget.getTaskWrapper().asFtp().setCharSet(charSet); |
mTarget.getTaskWrapper().asFtp().setCharSet(charSet); |
||||||
return mTarget; |
return mTarget; |
||||||
} |
} |
||||||
|
|
||||||
@Override public TARGET login(String userName, String password) { |
@Override public TARGET login(String userName, String password) { |
||||||
return login(userName, password, null); |
return login(userName, password, null); |
||||||
} |
} |
||||||
|
|
||||||
@Override public TARGET login(String userName, String password, String account) { |
@Override public TARGET login(String userName, String password, String account) { |
||||||
if (TextUtils.isEmpty(userName)) { |
if (TextUtils.isEmpty(userName)) { |
||||||
ALog.e(TAG, "用户名不能为null"); |
ALog.e(TAG, "用户名不能为null"); |
||||||
return mTarget; |
return mTarget; |
||||||
} else if (TextUtils.isEmpty(password)) { |
} else if (TextUtils.isEmpty(password)) { |
||||||
ALog.e(TAG, "密码不能为null"); |
ALog.e(TAG, "密码不能为null"); |
||||||
return mTarget; |
return mTarget; |
||||||
} |
} |
||||||
// urlEntity 不能在构造函数中获取,因为ftp上传时url是后于构造函数的
|
// urlEntity 不能在构造函数中获取,因为ftp上传时url是后于构造函数的
|
||||||
FtpUrlEntity urlEntity = mTarget.getTaskWrapper().asFtp().getUrlEntity(); |
FtpUrlEntity urlEntity = mTarget.getTaskWrapper().asFtp().getUrlEntity(); |
||||||
urlEntity.needLogin = true; |
urlEntity.needLogin = true; |
||||||
urlEntity.user = userName; |
urlEntity.user = userName; |
||||||
urlEntity.password = password; |
urlEntity.password = password; |
||||||
urlEntity.account = account; |
urlEntity.account = account; |
||||||
return mTarget; |
return mTarget; |
||||||
} |
} |
||||||
|
|
||||||
@Override public TARGET setProxy(Proxy proxy) { |
//@Override public TARGET setProxy(Proxy proxy) {
|
||||||
mTarget.getTaskWrapper().asFtp().setProxy(proxy); |
// mTarget.getTaskWrapper().asFtp().setProxy(proxy);
|
||||||
return mTarget; |
// return mTarget;
|
||||||
} |
//}
|
||||||
} |
} |
||||||
|
@ -1,57 +1,57 @@ |
|||||||
/* |
/* |
||||||
* Copyright (C) 2016 AriaLyy(https://github.com/AriaLyy/Aria)
|
* Copyright (C) 2016 AriaLyy(https://github.com/AriaLyy/Aria)
|
||||||
* |
* |
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
* you may not use this file except in compliance with the License. |
* you may not use this file except in compliance with the License. |
||||||
* You may obtain a copy of the License at |
* You may obtain a copy of the License at |
||||||
* |
* |
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
* |
* |
||||||
* Unless required by applicable law or agreed to in writing, software |
* Unless required by applicable law or agreed to in writing, software |
||||||
* distributed under the License is distributed on an "AS IS" BASIS, |
* distributed under the License is distributed on an "AS IS" BASIS, |
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
* See the License for the specific language governing permissions and |
* See the License for the specific language governing permissions and |
||||||
* limitations under the License. |
* limitations under the License. |
||||||
*/ |
*/ |
||||||
package com.arialyy.aria.core.inf; |
package com.arialyy.aria.core.inf; |
||||||
|
|
||||||
import android.support.annotation.CheckResult; |
import android.support.annotation.CheckResult; |
||||||
import java.net.Proxy; |
import java.net.Proxy; |
||||||
|
|
||||||
/** |
/** |
||||||
* Created by laoyuyu on 2018/3/9. |
* Created by laoyuyu on 2018/3/9. |
||||||
*/ |
*/ |
||||||
public interface IFtpTarget<TARGET extends ITargetHandler> { |
public interface IFtpTarget<TARGET extends ITargetHandler> { |
||||||
/** |
/** |
||||||
* 设置字符编码 |
* 设置字符编码 |
||||||
*/ |
*/ |
||||||
@CheckResult |
@CheckResult |
||||||
TARGET charSet(String charSet); |
TARGET charSet(String charSet); |
||||||
|
|
||||||
/** |
/** |
||||||
* ftp 用户登录信。 |
* ftp 用户登录信。 |
||||||
* |
* |
||||||
* @param userName ftp用户名 |
* @param userName ftp用户名 |
||||||
* @param password ftp用户密码 |
* @param password ftp用户密码 |
||||||
*/ |
*/ |
||||||
@CheckResult |
@CheckResult |
||||||
TARGET login(String userName, String password); |
TARGET login(String userName, String password); |
||||||
|
|
||||||
/** |
/** |
||||||
* ftp 用户登录信息 |
* ftp 用户登录信息 |
||||||
* |
* |
||||||
* @param userName ftp用户名 |
* @param userName ftp用户名 |
||||||
* @param password ftp用户密码 |
* @param password ftp用户密码 |
||||||
* @param account ftp账号 |
* @param account ftp账号 |
||||||
*/ |
*/ |
||||||
@CheckResult |
@CheckResult |
||||||
TARGET login(String userName, String password, String account); |
TARGET login(String userName, String password, String account); |
||||||
|
|
||||||
/** |
///**
|
||||||
* 设置代理 |
// * 设置代理
|
||||||
* |
// *
|
||||||
* @param proxy {@link Proxy} |
// * @param proxy {@link Proxy}
|
||||||
*/ |
// */
|
||||||
@CheckResult |
//@CheckResult
|
||||||
TARGET setProxy(Proxy proxy); |
//TARGET setProxy(Proxy proxy);
|
||||||
} |
} |
||||||
|
Loading…
Reference in new issue