-
Notifications
You must be signed in to change notification settings - Fork 95
remove lateinit #396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
remove lateinit #396
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,9 @@ import com.owncloud.android.lib.common.network.RedirectionPath | |
| import com.owncloud.android.lib.common.operations.RemoteOperation | ||
| import com.owncloud.android.lib.common.operations.RemoteOperationResult | ||
| import com.owncloud.android.lib.common.utils.Log_OC | ||
| import okhttp3.* | ||
| import okhttp3.CookieJar | ||
| import okhttp3.OkHttpClient | ||
| import okhttp3.Request | ||
| import org.apache.commons.httpclient.HttpStatus | ||
| import java.io.IOException | ||
| import java.util.concurrent.TimeUnit | ||
|
|
@@ -48,12 +50,11 @@ import javax.net.ssl.SSLSession | |
| import javax.net.ssl.TrustManager | ||
|
|
||
|
|
||
| class NextcloudClient(var baseUri: Uri, val context: Context, client: OkHttpClient) { | ||
| lateinit var credentials: String | ||
| lateinit var userId: String | ||
| lateinit var request: Request | ||
| var followRedirects = true; | ||
| val client = client | ||
| class NextcloudClient(var baseUri: Uri, | ||
| var userId: String, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please note that by default, Kotlin members are We shall close the access as much as possible. If we need to keep them accessible insidde tests, |
||
| val credentials: String, | ||
| val client: OkHttpClient) { | ||
| var followRedirects = true | ||
|
|
||
| companion object { | ||
| @JvmStatic | ||
|
|
@@ -74,7 +75,10 @@ class NextcloudClient(var baseUri: Uri, val context: Context, client: OkHttpClie | |
| } | ||
| } | ||
|
|
||
| constructor(baseUri: Uri, context: Context) : this(baseUri, context, createDefaultClient(context)) | ||
| constructor(baseUri: Uri, | ||
| userId: String, | ||
| credentials: String, | ||
| context: Context) : this(baseUri, userId, credentials, createDefaultClient(context)) | ||
|
|
||
| fun execute(remoteOperation: RemoteOperation): RemoteOperationResult { | ||
| return try { | ||
|
|
@@ -97,10 +101,6 @@ class NextcloudClient(var baseUri: Uri, val context: Context, client: OkHttpClie | |
| } | ||
| } | ||
|
|
||
| fun getRequestHeader(name: String): String? { | ||
| return request.header(name) | ||
| } | ||
|
|
||
| @Throws(IOException::class) | ||
| fun followRedirection(method: OkHttpMethodBase): RedirectionPath { | ||
| var redirectionsCount = 0 | ||
|
|
@@ -122,10 +122,10 @@ class NextcloudClient(var baseUri: Uri, val context: Context, client: OkHttpClie | |
| // due to it will be set a different url | ||
| method.releaseConnection() | ||
| method.uri = location | ||
| var destination = getRequestHeader("Destination") | ||
| var destination = method.getRequestHeader("Destination") | ||
|
|
||
| if (destination == null) { | ||
| destination = getRequestHeader("destination") | ||
| destination = method.getRequestHeader("destination") | ||
| } | ||
|
|
||
| if (destination != null) { | ||
|
|
@@ -136,7 +136,7 @@ class NextcloudClient(var baseUri: Uri, val context: Context, client: OkHttpClie | |
| val redirectedDestination = redirectionBase + destinationPath | ||
| destination = redirectedDestination | ||
|
|
||
| if (getRequestHeader("Destination").isNullOrEmpty()) { | ||
| if (method.getRequestHeader("Destination").isNullOrEmpty()) { | ||
| method.addRequestHeader("destination", destination) | ||
| } else { | ||
| method.addRequestHeader("Destination", destination) | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.