Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NicknameBuilder.kt « contactrow « vcard4android « bitfire « at « java « main « src - github.com/bitfireAT/vcard4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53a1448c6d15bc7191a9837c6bba057aeea99108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/***************************************************************************************************
 * Copyright © All Contributors. See LICENSE and AUTHORS in the root directory for details.
 **************************************************************************************************/

package at.bitfire.vcard4android.contactrow

import android.net.Uri
import android.provider.ContactsContract.CommonDataKinds
import at.bitfire.vcard4android.BatchOperation
import at.bitfire.vcard4android.Contact
import at.bitfire.vcard4android.property.CustomType
import java.util.*

class NicknameBuilder(dataRowUri: Uri, rawContactId: Long?, contact: Contact, readOnly: Boolean)
    : DataRowBuilder(Factory.mimeType(), dataRowUri, rawContactId, contact, readOnly) {

    override fun build(): List<BatchOperation.CpoBuilder> {
        val labeledNick = contact.nickName ?: return emptyList()
        val result = LinkedList<BatchOperation.CpoBuilder>()

        val label = labeledNick.label
        val nick = labeledNick.property
        for (nickValue in labeledNick.property.values) {
            if (nickValue.isNullOrBlank())
                continue

            val typeCode: Int
            var typeLabel: String? = null

            if (label != null) {
                typeCode = CommonDataKinds.Nickname.TYPE_CUSTOM
                typeLabel = label
            } else {
                val type = nick.type?.lowercase()
                typeCode = when (type) {
                    CustomType.Nickname.INITIALS -> CommonDataKinds.Nickname.TYPE_INITIALS
                    CustomType.Nickname.MAIDEN_NAME -> CommonDataKinds.Nickname.TYPE_MAIDEN_NAME
                    CustomType.Nickname.SHORT_NAME -> CommonDataKinds.Nickname.TYPE_SHORT_NAME
                    null -> CommonDataKinds.Nickname.TYPE_DEFAULT
                    else -> CommonDataKinds.Nickname.TYPE_OTHER_NAME
                }
            }

            result += newDataRow()
                .withValue(CommonDataKinds.Nickname.NAME, nickValue)
                .withValue(CommonDataKinds.Nickname.TYPE, typeCode)
                .withValue(CommonDataKinds.Nickname.LABEL, typeLabel)
        }
        return result
    }


    object Factory: DataRowBuilder.Factory<NicknameBuilder> {
        override fun mimeType() = CommonDataKinds.Nickname.CONTENT_ITEM_TYPE
        override fun newInstance(dataRowUri: Uri, rawContactId: Long?, contact: Contact, readOnly: Boolean) =
            NicknameBuilder(dataRowUri, rawContactId, contact, readOnly)
    }

}