aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/ca/allanwang/kau/xml/FAQ.kt
blob: f804b7038db7bb722ec19e0c2ceb6e2adfd6adce (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
60
61
62
63
64
package ca.allanwang.kau.xml

import android.content.Context
import android.content.res.XmlResourceParser
import android.support.annotation.XmlRes
import android.text.Html
import android.text.Spanned
import ca.allanwang.kau.utils.use
import org.jetbrains.anko.doAsync
import org.jetbrains.anko.uiThread
import org.xmlpull.v1.XmlPullParser

/**
 * Created by Allan Wang on 2017-07-30.
 */

/**
 * Parse an xml asynchronously with two tags, <question>Text</question> and <answer>Text</answer>,
 * and invoke the [callback] on the ui thread
 */
@Suppress("DEPRECATION")
fun Context.kauParseFaq(
        @XmlRes xmlRes: Int,
        /**
         * If \n is used, it will automatically be converted to </br>
         */
        parseNewLine: Boolean = true,
        callback: (items: List<FaqItem>) -> Unit) {
    doAsync {
        val items = mutableListOf<FaqItem>()
        resources.getXml(xmlRes).use { parser: XmlResourceParser ->
            var eventType = parser.eventType
            var question: Spanned? = null
            var flag = -1 //-1, 0, 1 -> invalid, question, answer
            while (eventType != XmlPullParser.END_DOCUMENT) {
                if (eventType == XmlPullParser.START_TAG) {
                    flag = when (parser.name) {
                        "question" -> 0
                        "answer" -> 1
                        else -> -1
                    }
                } else if (eventType == XmlPullParser.TEXT) {
                    when (flag) {
                        0 -> {
                            question = Html.fromHtml(parser.text.replace("\n", if (parseNewLine) "<br/>" else ""))
                            flag = -1
                        }
                        1 -> {
                            items.add(FaqItem(items.size + 1,
                                    question ?: throw IllegalArgumentException("KAU FAQ answer found without a question"),
                                    Html.fromHtml(parser.text.replace("\n", if (parseNewLine) "<br/>" else ""))))
                            question = null
                            flag = -1
                        }
                    }
                }
                eventType = parser.next()
            }
        }
        uiThread { callback(items) }
    }
}

data class FaqItem(val number: Int, val question: Spanned, val answer: Spanned)