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
9bc1a4bf
Unverified
Commit
9bc1a4bf
authored
Aug 31, 2018
by
Lucio Maciel
Committed by
GitHub
Aug 31, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'beta' into emoji-picker-layout-adjustments
parents
421106c4
cf0b6d7c
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
88 additions
and
130 deletions
+88
-130
ic_launcher-web.png
app/src/main/ic_launcher-web.png
+0
-0
ChatRoomPresenter.kt
...rocket/android/chatroom/presentation/ChatRoomPresenter.kt
+5
-7
Dialog.kt
app/src/main/java/chat/rocket/android/chatroom/ui/Dialog.kt
+32
-9
FileUiModel.kt
...ain/java/chat/rocket/android/files/uimodel/FileUiModel.kt
+2
-2
SharedPreferencesAccountsRepository.kt
...er/infraestructure/SharedPreferencesAccountsRepository.kt
+3
-3
PasswordPresenter.kt
...droid/settings/password/presentation/PasswordPresenter.kt
+1
-1
Uri.kt
app/src/main/java/chat/rocket/android/util/extensions/Uri.kt
+17
-10
ic_launcher_foreground.xml
app/src/main/res/drawable/ic_launcher_foreground.xml
+23
-94
strings.xml
app/src/main/res/values-ja/strings.xml
+3
-2
strings.xml
app/src/main/res/values-ru-rRU/strings.xml
+1
-1
dependencies.gradle
dependencies.gradle
+1
-1
No files found.
app/src/main/ic_launcher-web.png
100644 → 100755
View replaced file @
421106c4
View file @
9bc1a4bf
39.1 KB
|
W:
|
H:
63.8 KB
|
W:
|
H:
2-up
Swipe
Onion skin
app/src/main/java/chat/rocket/android/chatroom/presentation/ChatRoomPresenter.kt
View file @
9bc1a4bf
package
chat.rocket.android.chatroom.presentation
import
android.graphics.Bitmap
import
android.net.Uri
import
chat.rocket.android.R
import
chat.rocket.android.analytics.AnalyticsManager
...
...
@@ -80,6 +81,7 @@ import org.threeten.bp.Instant
import
timber.log.Timber
import
java.io.InputStream
import
java.util.*
import
java.util.zip.DeflaterInputStream
import
javax.inject.Inject
class
ChatRoomPresenter
@Inject
constructor
(
...
...
@@ -331,7 +333,7 @@ class ChatRoomPresenter @Inject constructor(
view
.
showFileSelection
(
settings
.
uploadMimeTypeFilter
())
}
fun
uploadFile
(
roomId
:
String
,
uri
:
Uri
,
msg
:
String
)
{
fun
uploadFile
(
roomId
:
String
,
uri
:
Uri
,
msg
:
String
,
bitmap
:
Bitmap
?
=
null
)
{
launchUI
(
strategy
)
{
view
.
showLoading
()
try
{
...
...
@@ -348,13 +350,9 @@ class ChatRoomPresenter @Inject constructor(
else
->
{
var
inputStream
:
InputStream
?
=
uriInteractor
.
getInputStream
(
uri
)
if
(
mimeType
.
contains
(
"image"
))
{
uriInteractor
.
getBitmap
(
uri
)
?.
let
{
it
.
compressImageAndGetInputStream
(
mimeType
)
?.
let
{
bitmap
?.
compressImageAndGetInputStream
(
mimeType
)
?.
let
{
inputStream
=
it
}
}
}
retryIO
(
"uploadFile($roomId, $fileName, $mimeType"
)
{
client
.
uploadFile
(
...
...
app/src/main/java/chat/rocket/android/chatroom/ui/Dialog.kt
View file @
9bc1a4bf
package
chat.rocket.android.chatroom.ui
import
android.graphics.Bitmap
import
android.graphics.drawable.Drawable
import
android.net.Uri
import
androidx.core.view.isVisible
import
chat.rocket.android.emoji.internal.GlideApp
import
chat.rocket.android.util.extensions.getFileName
import
chat.rocket.android.util.extensions.getMimeType
import
com.bumptech.glide.request.target.SimpleTarget
import
com.bumptech.glide.request.transition.Transition
fun
ChatRoomFragment
.
showFileAttachmentDialog
(
uri
:
Uri
)
{
activity
?.
let
{
fragmentActivity
->
uri
.
getMimeType
(
fragmentActivity
).
let
{
mimeType
->
var
bitmap
:
Bitmap
?
=
null
activity
?.
let
{
context
->
uri
.
getMimeType
(
context
).
let
{
mimeType
->
description
.
text
.
clear
()
when
{
mimeType
.
startsWith
(
"image"
)
->
{
GlideApp
.
with
(
context
)
.
asBitmap
()
.
load
(
uri
)
.
override
(
500
,
500
)
.
centerCrop
()
.
into
(
object
:
SimpleTarget
<
Bitmap
>()
{
override
fun
onResourceReady
(
resource
:
Bitmap
,
transition
:
Transition
<
in
Bitmap
>?
)
{
bitmap
=
resource
imagePreview
.
isVisible
=
true
imagePreview
.
setImageURI
(
uri
)
imagePreview
.
setImageBitmap
(
resource
)
}
mimeType
.
startsWith
(
"video"
)
->
{
audioVideoAttachment
.
isVisible
=
true
})
}
mimeType
.
startsWith
(
"video"
)
->
audioVideoAttachment
.
isVisible
=
true
else
->
{
textFile
.
isVisible
=
true
textFile
.
text
=
uri
.
getFileName
(
fragmentActivity
)
textFile
.
text
=
uri
.
getFileName
(
context
)
}
}
}
}
sendButton
.
setOnClickListener
{
presenter
.
uploadFile
(
chatRoomId
,
uri
,
(
citation
?:
""
)
+
description
.
text
.
toString
())
presenter
.
uploadFile
(
chatRoomId
,
uri
,
(
citation
?:
""
)
+
description
.
text
.
toString
(),
bitmap
)
alertDialog
.
dismiss
()
}
cancelButton
.
setOnClickListener
{
alertDialog
.
dismiss
()
}
...
...
app/src/main/java/chat/rocket/android/files/uimodel/FileUiModel.kt
View file @
9bc1a4bf
...
...
@@ -34,8 +34,8 @@ class FileUiModel(
}
private
fun
getUserDisplayName
():
String
{
val
username
=
"@${genericAttachment.user
?
.username}"
val
realName
=
genericAttachment
.
user
?
.
name
val
username
=
"@${genericAttachment.user.username}"
val
realName
=
genericAttachment
.
user
.
name
val
uploaderName
=
if
(
settings
.
useRealName
())
realName
else
username
return
uploaderName
?:
username
}
...
...
app/src/main/java/chat/rocket/android/server/infraestructure/SharedPreferencesAccountsRepository.kt
View file @
9bc1a4bf
...
...
@@ -14,12 +14,12 @@ class SharedPreferencesAccountsRepository(
private
val
moshi
:
Moshi
)
:
AccountsRepository
{
override
fun
save
(
newA
ccount
:
Account
)
{
override
fun
save
(
a
ccount
:
Account
)
{
val
accounts
=
load
()
val
newList
=
accounts
.
filter
{
account
->
newAccount
.
serverUrl
!=
accoun
t
.
serverUrl
}
val
newList
=
accounts
.
filter
{
it
.
serverUrl
!=
i
t
.
serverUrl
}
.
toMutableList
()
newList
.
add
(
0
,
newA
ccount
)
newList
.
add
(
0
,
a
ccount
)
save
(
newList
)
}
...
...
app/src/main/java/chat/rocket/android/settings/password/presentation/PasswordPresenter.kt
View file @
9bc1a4bf
...
...
@@ -27,7 +27,7 @@ class PasswordPresenter @Inject constructor(
val
me
=
retryIO
(
"me"
)
{
client
.
me
()
}
retryIO
(
"updateProfile(${me.id})"
)
{
client
.
updateProfile
(
me
.
id
!!
,
null
,
null
,
password
,
null
)
client
.
updateProfile
(
me
.
id
,
null
,
null
,
password
,
null
)
}
view
.
showPasswordSuccessfullyUpdatedMessage
()
...
...
app/src/main/java/chat/rocket/android/util/extensions/Uri.kt
View file @
9bc1a4bf
...
...
@@ -10,15 +10,19 @@ import android.provider.DocumentsContract
import
android.provider.MediaStore
import
android.provider.OpenableColumns
import
android.webkit.MimeTypeMap
import
java.io.*
import
java.io.File
import
java.io.FileInputStream
import
java.io.FileNotFoundException
import
java.io.IOException
import
java.io.InputStream
fun
Uri
.
getFileName
(
context
:
Context
):
String
?
{
val
cursor
=
context
.
contentResolver
.
query
(
this
,
null
,
null
,
null
,
null
,
null
)
var
fileName
:
String
?
=
null
cursor
.
use
{
cursor
->
if
(
cursor
!=
null
&&
cursor
.
moveToFirst
())
{
fileName
=
cursor
.
getString
(
cursor
.
getColumnIndex
(
OpenableColumns
.
DISPLAY_NAME
))
cursor
?.
use
{
if
(
it
.
moveToFirst
())
{
fileName
=
it
.
getString
(
it
.
getColumnIndex
(
OpenableColumns
.
DISPLAY_NAME
))
}
}
return
fileName
...
...
@@ -29,7 +33,7 @@ fun Uri.getFileSize(context: Context): Int {
if
(
scheme
==
ContentResolver
.
SCHEME_CONTENT
)
{
try
{
val
fileInputStream
=
context
.
contentResolver
.
openInputStream
(
this
)
fileSize
=
fileInputStream
.
available
().
toString
()
fileSize
=
fileInputStream
?
.
available
().
toString
()
}
catch
(
e
:
Exception
)
{
e
.
printStackTrace
()
}
...
...
@@ -67,14 +71,17 @@ fun Uri.isVirtualFile(context: Context): Boolean {
val
cursor
=
context
.
contentResolver
.
query
(
this
,
arrayOf
(
DocumentsContract
.
Document
.
COLUMN_FLAGS
),
null
,
null
,
null
null
,
null
,
null
)
var
flags
=
0
if
(
cursor
.
moveToFirst
())
{
flags
=
cursor
.
getInt
(
0
)
cursor
?.
use
{
if
(
it
.
moveToFirst
())
{
flags
=
it
.
getInt
(
0
)
}
}
cursor
.
close
()
return
flags
and
DocumentsContract
.
Document
.
FLAG_VIRTUAL_DOCUMENT
!=
0
}
...
...
app/src/main/res/drawable/ic_launcher_foreground.xml
View file @
9bc1a4bf
<vector
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:aapt=
"http://schemas.android.com/aapt"
android:width=
"108dp"
android:height=
"108dp"
android:viewportWidth=
"1055.0303"
android:viewportHeight=
"1055.0303"
>
android:viewportHeight=
"1055.0303"
android:viewportWidth=
"1055.0303"
>
<group
android:translateX=
"281.28394"
android:translateY=
"271.51514"
>
<path
android:fillType=
"nonZero"
android:pathData=
"M398.607,219.474L398.612,219.482C398.611,219.48 398.61,219.479 398.609,219.478C398.608,219.477 398.608,219.475 398.607,219.474ZM182.24,104.988C193.825,111.43 204.777,119.58 214.13,128.64C229.206,125.906 244.752,124.527 260.522,124.527C307.733,124.527 352.493,136.926 386.549,159.432C404.185,171.093 418.203,184.928 428.208,200.558C439.352,217.973 445,236.701 445,256.769C445,276.297 439.352,295.032 428.208,312.444C418.203,328.081 404.185,341.913 386.549,353.573C352.493,376.08 307.737,388.47 260.522,388.47C244.752,388.47 229.21,387.092 214.13,384.362C204.773,393.417 193.825,401.572 182.24,408.014C120.335,439.051 69,408.744 69,408.744C69,408.744 116.729,368.178 108.967,332.617C87.612,310.704 76.041,284.276 76.041,256.237C76.041,228.725 87.616,202.297 108.967,180.381C116.727,144.83 69.016,104.271 69,104.258C69.015,104.249 120.345,73.951 182.24,104.988Z"
android:strokeWidth=
"1"
android:strokeColor=
"#00000000"
>
<aapt:attr
name=
"android:fillColor"
>
<gradient
android:endX=
"257"
android:endY=
"383.12793"
android:startX=
"257"
android:startY=
"49.942783"
android:type=
"linear"
>
<item
android:color=
"#FFDB2323"
android:offset=
"0"
/>
<item
android:color=
"#FFDB2323"
android:offset=
"1"
/>
</gradient>
</aapt:attr>
</path>
android:fillColor=
"#FFDB2323"
android:pathData=
"M491.3,255.3c0,-24.1 -7.2,-47.2 -21.4,-68.7c-12.8,-19.3 -30.7,-36.4 -53.2,-50.7c-43.5,-27.8 -100.6,-43.1 -160.9,-43.1c-20.1,0 -40,1.7 -59.2,5.1c-11.9,-11.2 -25.9,-21.2 -40.7,-29.2c-79,-38.3 -144.6,-0.9 -144.6,-0.9s60.9,50.1 51,93.9c-27.3,27 -42,59.6 -42,93.6c0,0.1 0,0.2 0,0.3c0,0.1 0,0.2 0,0.3c0,33.9 14.8,66.6 42,93.6c9.9,43.9 -51,93.9 -51,93.9s65.5,37.4 144.6,-0.9c14.8,-8 28.8,-18 40.7,-29.2c19.2,3.4 39.1,5.1 59.2,5.1c60.3,0 117.4,-15.3 160.9,-43.1c22.5,-14.4 40.4,-31.5 53.2,-50.7c14.2,-21.5 21.4,-44.6 21.4,-68.7c0,-0.1 0,-0.2 0,-0.3C491.3,255.6 491.3,255.4 491.3,255.3z"
/>
<path
android:fillColor=
"#FFFFFF"
android:fillType=
"nonZero"
android:pathData=
"M144.889,317.876C123.712,301.098 111,279.628 111,256.227C111,202.53 177.933,159 260.5,159C343.067,159 410,202.53 410,256.227C410,309.925 343.067,353.455 260.5,353.455C240.151,353.455 220.751,350.811 203.069,346.022L190.142,358.556C183.117,365.366 174.884,371.529 166.303,376.385C154.928,382.001 143.695,385.065 132.582,386C133.209,384.854 133.787,383.693 134.406,382.546C147.359,358.559 150.854,337.002 144.889,317.876Z"
android:strokeWidth=
"1"
android:strokeColor=
"#00000000"
/>
android:pathData=
"M255.9,124.2c113.9,0 206.3,59 206.3,131.8c0,72.8 -92.4,131.8 -206.3,131.8c-25.4,0 -49.7,-2.9 -72.1,-8.3c-22.8,27.4 -73,65.6 -121.7,53.3c15.9,-17 39.4,-45.8 34.3,-93.2c-29.2,-22.7 -46.8,-51.8 -46.8,-83.5C49.6,183.2 142,124.2 255.9,124.2"
/>
<path
android:fillType=
"nonZero"
android:pathData=
"M167,256a22.04,22 0,1 0,44.081 0a22.04,22 0,1 0,-44.081 0z"
android:strokeWidth=
"1"
android:strokeColor=
"#00000000"
>
<aapt:attr
name=
"android:fillColor"
>
<gradient
android:endX=
"189.0405"
android:endY=
"271.55902"
android:startX=
"189.0405"
android:startY=
"230.61958"
android:type=
"linear"
>
<item
android:color=
"#FFDB2323"
android:offset=
"0"
/>
<item
android:color=
"#FFDB2323"
android:offset=
"1"
/>
</gradient>
</aapt:attr>
</path>
android:fillColor=
"#FFDB2323"
android:pathData=
"M255.9,256m-27.4,0a27.4,27.4 0,1 1,54.8 0a27.4,27.4 0,1 1,-54.8 0"
/>
<path
android:fillType=
"nonZero"
android:pathData=
"M237.96,256a22.04,22 0,1 0,44.081 0a22.04,22 0,1 0,-44.081 0z"
android:strokeWidth=
"1"
android:strokeColor=
"#00000000"
>
<aapt:attr
name=
"android:fillColor"
>
<gradient
android:endX=
"260.00052"
android:endY=
"271.55902"
android:startX=
"260.00052"
android:startY=
"230.61958"
android:type=
"linear"
>
<item
android:color=
"#FFDB2323"
android:offset=
"0"
/>
<item
android:color=
"#FFDB2323"
android:offset=
"1"
/>
</gradient>
</aapt:attr>
</path>
android:fillColor=
"#FFDB2323"
android:pathData=
"M351.2,256m-27.4,0a27.4,27.4 0,1 1,54.8 0a27.4,27.4 0,1 1,-54.8 0"
/>
<path
android:fillType=
"nonZero"
android:pathData=
"M308.919,256a22.04,22 0,1 0,44.081 0a22.04,22 0,1 0,-44.081 0z"
android:strokeWidth=
"1"
android:strokeColor=
"#00000000"
>
<aapt:attr
name=
"android:fillColor"
>
<gradient
android:endX=
"330.9595"
android:endY=
"271.55902"
android:startX=
"330.9595"
android:startY=
"230.61958"
android:type=
"linear"
>
<item
android:color=
"#FFDB2323"
android:offset=
"0"
/>
<item
android:color=
"#FFDB2323"
android:offset=
"1"
/>
</gradient>
</aapt:attr>
</path>
android:fillColor=
"#FFDB2323"
android:pathData=
"M160.6,256m-27.4,0a27.4,27.4 0,1 1,54.8 0a27.4,27.4 0,1 1,-54.8 0"
/>
</group>
</vector>
\ No newline at end of file
app/src/main/res/values-ja/strings.xml
View file @
9bc1a4bf
...
...
@@ -44,8 +44,9 @@
<!-- Settings List -->
<string-array
name=
"settings_actions"
>
<item
name=
"item_password"
>
パスワードの変更
</item>
<item
name=
"item_password"
>
このアプリケーションについて
</item>
<item
name=
"item_preferences"
>
Preferences
</item>
<!-- TODO Add translation -->
<item
name=
"item_password"
>
Change Password
</item>
<!-- TODO Add translation -->
<item
name=
"item_password"
>
About
</item>
<!-- TODO Add translation -->
</string-array>
<!-- Regular information messages -->
...
...
app/src/main/res/values-ru/strings.xml
→
app/src/main/res/values-ru
-rRU
/strings.xml
View file @
9bc1a4bf
dependencies.gradle
View file @
9bc1a4bf
...
...
@@ -25,7 +25,7 @@ ext {
playServices
:
'16.0.0'
,
exoPlayer
:
'2.8.2'
,
flexbox
:
'1.0.0'
,
material
:
'1.0.0-
rc
01'
,
material
:
'1.0.0-
beta
01'
,
room
:
'2.0.0-rc01'
,
lifecycle
:
'2.0.0-rc01'
,
...
...
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