Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
214f9b44
Commit
214f9b44
authored
Sep 29, 2017
by
Filipe de Lima Brito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update UrlHelper.kt
parent
7141a9a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
UrlHelper.kt
app/src/main/java/chat/rocket/android/helper/UrlHelper.kt
+11
-10
No files found.
app/src/main/java/chat/rocket/android/helper/UrlHelper.kt
View file @
214f9b44
...
...
@@ -8,7 +8,8 @@ object UrlHelper {
* @param uri The URI.
* @return The URI whit no scheme (HTTP or HTTPS)
*/
fun
removeUriScheme
(
uri
:
String
)
=
uri
.
replace
(
"http://"
,
""
).
replace
(
"https://"
,
""
)
fun
removeUriScheme
(
uri
:
String
)
=
uri
.
replace
(
"http://"
,
""
).
replace
(
"https://"
,
""
)
/**
* Returns the hostname with the security protocol (scheme) HTTPS.
...
...
@@ -17,7 +18,7 @@ object UrlHelper {
* @return The hostname with the security protocol (scheme) HTTPS.
*/
fun
getSafeHostname
(
hostname
:
String
):
String
=
"https://"
+
hostname
.
replace
(
"http://"
,
""
).
replace
(
"https://"
,
""
)
"https://"
+
removeUriScheme
(
hostname
)
/**
* Returns an URL with no spaces and inverted slashes.
...
...
@@ -25,17 +26,17 @@ object UrlHelper {
* @param url The URL.
* @return The URL with no spaces and inverted slashes.
*/
fun
getUrl
(
url
:
String
)
=
fun
get
Safe
Url
(
url
:
String
)
=
url
.
replace
(
" "
,
"%20"
).
replace
(
"\\"
,
""
)
/**
* Returns an
URL for a file
.
* Returns an
attachment link
.
*
* @param
path The path to the fil
e.
* @param
userId The user
ID.
* @param
token The token
.
* @return The
URL for a file
* @param
hostname The hostnam
e.
* @param
fileId The file
ID.
* @param
fileName The file name
.
* @return The
attachment link.
*/
fun
get
UrlForFile
(
path
:
String
,
userId
:
String
,
token
:
String
):
String
=
"https://"
+
removeUriScheme
(
getUrl
(
path
))
+
"?rc_uid=$userId"
+
"&rc_token=$token"
fun
get
AttachmentLink
(
hostname
:
String
,
fileId
:
String
,
fileName
:
String
):
String
=
getSafeHostname
(
hostname
)
+
"/file-upload/"
+
fileId
+
"/"
+
fileName
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment