aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/facebook/requests/Menu.kt
blob: dcb0ce10df20687df5e2ab6e0de54ffbef6b5844 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*
 * Copyright 2018 Allan Wang
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.pitchedapps.frost.facebook.requests

import com.fasterxml.jackson.annotation.JsonCreator
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.MapperFeature
import com.fasterxml.jackson.databind.ObjectMapper
import com.pitchedapps.frost.facebook.FB_URL_BASE
import com.pitchedapps.frost.facebook.formattedFbUrl
import com.pitchedapps.frost.utils.L
import okhttp3.Call
import org.apache.commons.text.StringEscapeUtils
import org.jsoup.Jsoup
import java.io.IOException

/**
 * Created by Allan Wang on 29/12/17.
 */
fun RequestAuth.getMenuData(): FrostRequest<MenuData?> {

    val body = listOf(
        "fb_dtsg" to fb_dtsg,
        "__user" to userId
    ).withEmptyData("m_sess", "__dyn", "__req", "__ajax__")

    return frostRequest(::parseMenu) {
        url("${FB_URL_BASE}bookmarks/flyout/body/?id=u_0_2")
        post(body.toForm())
    }
}

fun parseMenu(call: Call): MenuData? {
    val fullString = call.execute().body()?.string() ?: return null
    var jsonString = fullString.substringAfter("bookmarkGroups", "")
        .substringAfter("[", "")

    if (jsonString.isBlank()) return null

    jsonString = "{ \"data\" : [${StringEscapeUtils.unescapeEcmaScript(jsonString)}"

    val mapper = ObjectMapper()
        .disable(MapperFeature.AUTO_DETECT_SETTERS)

    return try {
        val data = mapper.readValue(jsonString, MenuData::class.java)

        // parse footer content

        val footer = fullString.substringAfter("footerMarkup", "")
            .substringAfter("{", "")
            .substringBefore("}", "")

        val doc = Jsoup.parseBodyFragment(
            StringEscapeUtils.unescapeEcmaScript(
                StringEscapeUtils.unescapeEcmaScript(footer)
            )
        )
        val footerData = mutableListOf<MenuFooterItem>()
        val footerSmallData = mutableListOf<MenuFooterItem>()

        doc.select("a[href]").forEach {
            val text = it.text()
            it.parent()
            if (text.isEmpty()) return@forEach
            val href = it.attr("href").formattedFbUrl
            val item = MenuFooterItem(name = text, url = href)
            if (it.parent().tag().name == "span")
                footerSmallData.add(item)
            else
                footerData.add(item)
        }

        return data.copy(footer = MenuFooter(footerData, footerSmallData))
    } catch (e: IOException) {
        L.e(e) { "Menu parse fail" }
        null
    }
}

@JsonIgnoreProperties(ignoreUnknown = true)
data class MenuData(
    val data: List<MenuHeader> = emptyList(),
    val footer: MenuFooter = MenuFooter()
) {

    @JsonCreator
    constructor(
        @JsonProperty("data") data: List<MenuHeader>?
    ) : this(data ?: emptyList(), MenuFooter())

    fun flatMapValid(): List<MenuItemData> {
        val items = mutableListOf<MenuItemData>()
        data.forEach {
            if (it.isValid) items.add(it)
            items.addAll(it.visible.filter(MenuItem::isValid))
        }

        items.addAll(footer.data.filter(MenuFooterItem::isValid))
        items.addAll(footer.smallData.filter(MenuFooterItem::isValid))

        return items
    }
}

interface MenuItemData {
    val isValid: Boolean
}

@JsonIgnoreProperties(ignoreUnknown = true)
data class MenuHeader(
    val id: String? = null,
    val header: String? = null,
    val visible: List<MenuItem> = emptyList(),
    val all: List<MenuItem> = emptyList()
) : MenuItemData {

    @JsonCreator
    constructor(
        @JsonProperty("id") id: String?,
        @JsonProperty("header") header: String?,
        @JsonProperty("visible") visible: List<MenuItem>?,
        @JsonProperty("all") all: List<MenuItem>?,
        @JsonProperty("fake") fake: Boolean?
    ) : this(id, header, visible ?: emptyList(), all ?: emptyList())

    override val isValid: Boolean
        get() = !header.isNullOrBlank()
}

@JsonIgnoreProperties(ignoreUnknown = true)
data class MenuItem(
    val id: String? = null,
    val name: String? = null,
    val pic: String? = null,
    val url: String? = null,
    val badge: String? = null,
    val countDetails: String? = null
) : MenuItemData {

    @JsonCreator
    constructor(
        @JsonProperty("id") id: String?,
        @JsonProperty("name") name: String?,
        @JsonProperty("pic") pic: String?,
        @JsonProperty("url") url: String?,
        @JsonProperty("count") badge: String?,
        @JsonProperty("count_details") countDetails: String?,
        @JsonProperty("fake") fake: Boolean?
    ) : this(
        id, name, pic?.formattedFbUrl,
        url?.formattedFbUrl,
        if (badge == "0") null else badge,
        countDetails
    )

    override val isValid: Boolean
        get() = !name.isNullOrBlank() && !url.isNullOrBlank()
}

data class MenuFooter(
    val data: List<MenuFooterItem> = emptyList(),
    val smallData: List<MenuFooterItem> = emptyList()
) {

    val hasContent
        get() = data.isNotEmpty() || smallData.isNotEmpty()
}

data class MenuFooterItem(
    val name: String? = null,
    val url: String? = null,
    val isSmall: Boolean = false
) : MenuItemData {
    override val isValid: Boolean
        get() = name != null && url != null
}