Skip to content

Commit

Permalink
Merge pull request #7623 from vector-im/dependabot/gradle/io.gitlab.a…
Browse files Browse the repository at this point in the history
…rturbosch.detekt-1.22.0

Bump io.gitlab.arturbosch.detekt from 1.21.0 to 1.22.0
  • Loading branch information
Florian14 authored Nov 24, 2022
2 parents 5eb64b4 + ebbfca4 commit ae996ae
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 53 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ plugins {
// ktlint Plugin
id "org.jlleitschuh.gradle.ktlint" version "11.0.0"
// Detekt
id "io.gitlab.arturbosch.detekt" version "1.21.0"
id "io.gitlab.arturbosch.detekt" version "1.22.0"
// Ksp
id "com.google.devtools.ksp" version "1.7.21-1.0.8"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,7 @@ internal class CrossSigningOlm @Inject constructor(
val signaturesMadeByMyKey = signatures[myUserID] // Signatures made by me
?.get("ed25519:$pubKey")

if (signaturesMadeByMyKey.isNullOrBlank()) {
throw IllegalArgumentException("Not signed with my key $type")
}
require(signaturesMadeByMyKey.orEmpty().isNotBlank()) { "Not signed with my key $type" }

// Check that Alice USK signature of Bob MSK is valid
olmUtility.verifyEd25519Signature(signaturesMadeByMyKey, pubKey, JsonCanonicalizer.getCanonicalJson(Map::class.java, signable))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ internal class DefaultEncryptEventTask @Inject constructor(
// don't want to wait for any query
// if (!params.crypto.isRoomEncrypted(params.roomId)) return params.event
val localEvent = params.event
if (localEvent.eventId == null || localEvent.type == null) {
throw IllegalArgumentException()
}
require(localEvent.eventId != null)
require(localEvent.type != null)

localEchoRepository.updateSendState(localEvent.eventId, localEvent.roomId, SendState.ENCRYPTING)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1140,28 +1140,25 @@ internal class DefaultVerificationService @Inject constructor(
override fun beginKeyVerification(method: VerificationMethod, otherUserId: String, otherDeviceId: String, transactionId: String?): String? {
val txID = transactionId?.takeIf { it.isNotEmpty() } ?: createUniqueIDForTransaction(otherUserId, otherDeviceId)
// should check if already one (and cancel it)
if (method == VerificationMethod.SAS) {
val tx = DefaultOutgoingSASDefaultVerificationTransaction(
setDeviceVerificationAction,
userId,
deviceId,
cryptoStore,
crossSigningService,
outgoingKeyRequestManager,
secretShareManager,
myDeviceInfoHolder.get().myDevice.fingerprint()!!,
txID,
otherUserId,
otherDeviceId
)
tx.transport = verificationTransportToDeviceFactory.createTransport(tx)
addTransaction(tx)
require(method == VerificationMethod.SAS) { "Unknown verification method" }
val tx = DefaultOutgoingSASDefaultVerificationTransaction(
setDeviceVerificationAction,
userId,
deviceId,
cryptoStore,
crossSigningService,
outgoingKeyRequestManager,
secretShareManager,
myDeviceInfoHolder.get().myDevice.fingerprint()!!,
txID,
otherUserId,
otherDeviceId
)
tx.transport = verificationTransportToDeviceFactory.createTransport(tx)
addTransaction(tx)

tx.start()
return txID
} else {
throw IllegalArgumentException("Unknown verification method")
}
tx.start()
return txID
}

override fun requestKeyVerificationInDMs(
Expand Down Expand Up @@ -1343,28 +1340,25 @@ internal class DefaultVerificationService @Inject constructor(
otherUserId: String,
otherDeviceId: String
): String {
if (method == VerificationMethod.SAS) {
val tx = DefaultOutgoingSASDefaultVerificationTransaction(
setDeviceVerificationAction,
userId,
deviceId,
cryptoStore,
crossSigningService,
outgoingKeyRequestManager,
secretShareManager,
myDeviceInfoHolder.get().myDevice.fingerprint()!!,
transactionId,
otherUserId,
otherDeviceId
)
tx.transport = verificationTransportRoomMessageFactory.createTransport(roomId, tx)
addTransaction(tx)
require(method == VerificationMethod.SAS) { "Unknown verification method" }
val tx = DefaultOutgoingSASDefaultVerificationTransaction(
setDeviceVerificationAction,
userId,
deviceId,
cryptoStore,
crossSigningService,
outgoingKeyRequestManager,
secretShareManager,
myDeviceInfoHolder.get().myDevice.fingerprint()!!,
transactionId,
otherUserId,
otherDeviceId
)
tx.transport = verificationTransportRoomMessageFactory.createTransport(roomId, tx)
addTransaction(tx)

tx.start()
return transactionId
} else {
throw IllegalArgumentException("Unknown verification method")
}
tx.start()
return transactionId
}

override fun readyPendingVerificationInDMs(
Expand Down
2 changes: 1 addition & 1 deletion tools/detekt/detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ complexity:
active: false
LongParameterList:
active: false
ComplexMethod:
CyclomaticComplexMethod:
active: false
NestedBlockDepth:
active: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ class VectorViewModelFactory @Inject constructor(
}
}
}
if (creator == null) {
throw IllegalArgumentException("Unknown model class: $modelClass")
}
require(creator != null) { "Unknown model class: $modelClass" }
try {
@Suppress("UNCHECKED_CAST")
return creator.get() as T
Expand Down

0 comments on commit ae996ae

Please sign in to comment.