-
Notifications
You must be signed in to change notification settings - Fork 748
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Permalink: Merge LinkHandlerActivity with PermalinkHandlerActivity
Also convert links to matrix.to before permalink parsing
- Loading branch information
Showing
8 changed files
with
152 additions
and
206 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
...sdk-android/src/main/java/org/matrix/android/sdk/api/session/permalinks/MatrixToMapper.kt
This file contains 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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright 2020 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.matrix.android.sdk.api.session.permalinks | ||
|
||
import android.net.Uri | ||
|
||
/** | ||
* Mapping of an input URI to a matrix.to compliant URI. | ||
*/ | ||
object MatrixToMapper { | ||
|
||
/** | ||
* Try to convert a URL from an element web instance or from a client permalink to a matrix.to url. | ||
* Examples: | ||
* - https://riot.im/develop/#/room/#element-android:matrix.org -> https://matrix.to/#/#element-android:matrix.org | ||
* - https://app.element.io/#/room/#element-android:matrix.org -> https://matrix.to/#/#element-android:matrix.org | ||
* - https://www.example.org/#/room/#element-android:matrix.org -> https://matrix.to/#/#element-android:matrix.org | ||
* - element://room/#element-android:matrix.org -> https://matrix.to/#/#element-android:matrix.org | ||
*/ | ||
fun map(uri: Uri): Uri? { | ||
val uriString = uri.toString() | ||
|
||
return when { | ||
// URL is already a matrix.to | ||
uriString.startsWith(PermalinkService.MATRIX_TO_URL_BASE) -> uri | ||
// Web or client url | ||
SUPPORTED_PATHS.any { it in uriString } -> { | ||
val path = SUPPORTED_PATHS.first { it in uriString } | ||
Uri.parse(PermalinkService.MATRIX_TO_URL_BASE + uriString.substringAfter(path)) | ||
} | ||
// Element custom scheme | ||
uriString.startsWith(PermalinkService.MATRIX_TO_CUSTOM_SCHEME_URL_BASE) -> { | ||
val permalinkId = when { | ||
uriString.startsWith(USER_LINK_PREFIX) -> uriString.substring(USER_LINK_PREFIX.length) | ||
uriString.startsWith(ROOM_LINK_PREFIX) -> uriString.substring(ROOM_LINK_PREFIX.length) | ||
else -> null | ||
} | ||
Uri.parse(PermalinkService.MATRIX_TO_URL_BASE + permalinkId) | ||
} | ||
// URL is not supported | ||
else -> null | ||
} | ||
} | ||
|
||
private const val ROOM_LINK_PREFIX = "${PermalinkService.MATRIX_TO_CUSTOM_SCHEME_URL_BASE}room/" | ||
private const val USER_LINK_PREFIX = "${PermalinkService.MATRIX_TO_CUSTOM_SCHEME_URL_BASE}user/" | ||
|
||
private val SUPPORTED_PATHS = listOf( | ||
"/#/room/", | ||
"/#/user/", | ||
"/#/group/" | ||
) | ||
} |
This file contains 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 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 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 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 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
Oops, something went wrong.