aux-search/src/Search.elm

933 lines
28 KiB
Elm
Raw Normal View History

2020-06-03 19:02:12 +00:00
module Search exposing
( Model
, Msg(..)
, Options
, ResultItem
2020-07-02 12:27:49 +00:00
, SearchResult
, Sort(..)
, channelDetailsFromId
, channels
, decodeResult
, fromSortId
, init
, makeRequest
2020-06-19 06:53:49 +00:00
, makeRequestBody
, update
, view
)
import Base64
2020-07-02 12:27:49 +00:00
import Browser.Dom
import Browser.Navigation
import Html
exposing
( Html
2020-05-11 19:56:10 +00:00
, a
, button
, div
2020-05-11 19:56:10 +00:00
, em
, form
, h1
, h4
, input
, label
2020-05-11 19:56:10 +00:00
, li
, option
2020-05-11 19:56:10 +00:00
, p
, select
2020-05-11 20:42:57 +00:00
, strong
, text
2020-05-11 19:56:10 +00:00
, ul
)
import Html.Attributes
exposing
( attribute
, autofocus
, class
2020-05-11 19:56:10 +00:00
, classList
, href
2020-07-02 12:27:49 +00:00
, id
, placeholder
, selected
, type_
, value
)
import Html.Events
exposing
2020-07-24 21:01:16 +00:00
( onClick
2020-05-11 19:56:10 +00:00
, onInput
, onSubmit
)
import Http
import Json.Decode
import Json.Encode
import RemoteData
2020-07-02 12:27:49 +00:00
import Task
import Url.Builder
type alias Model a =
2020-05-11 20:42:57 +00:00
{ channel : String
, query : Maybe String
2020-07-02 12:27:49 +00:00
, result : RemoteData.WebData (SearchResult a)
, show : Maybe String
2020-05-11 19:56:10 +00:00
, from : Int
, size : Int
, sort : Sort
}
2020-07-02 12:27:49 +00:00
type alias SearchResult a =
{ hits : ResultHits a
}
type alias ResultHits a =
{ total : ResultHitsTotal
, max_score : Maybe Float
, hits : List (ResultItem a)
}
type alias ResultHitsTotal =
{ value : Int
2020-07-02 12:27:49 +00:00
, relation : String
}
type alias ResultItem a =
{ index : String
, id : String
, score : Maybe Float
, source : a
2020-07-02 12:27:49 +00:00
, text : Maybe String
2020-06-18 10:24:52 +00:00
, matched_queries : Maybe (List String)
}
type Sort
= Relevance
| AlphabeticallyAsc
| AlphabeticallyDesc
init :
Maybe String
-> Maybe String
2020-05-11 20:42:57 +00:00
-> Maybe String
2020-05-11 19:56:10 +00:00
-> Maybe Int
-> Maybe Int
-> Maybe String
-> Maybe (Model a)
-> ( Model a, Cmd (Msg a) )
init channel query show from size sort model =
let
defaultChannel =
model
|> Maybe.map (\x -> x.channel)
|> Maybe.withDefault "unstable"
defaultFrom =
model
|> Maybe.map (\x -> x.from)
|> Maybe.withDefault 0
defaultSize =
model
|> Maybe.map (\x -> x.size)
2020-08-29 23:03:09 +00:00
|> Maybe.withDefault 30
in
( { channel = Maybe.withDefault defaultChannel channel
2020-05-11 20:42:57 +00:00
, query = query
, result =
model
|> Maybe.map (\x -> x.result)
|> Maybe.withDefault RemoteData.NotAsked
, show = show
, from = Maybe.withDefault defaultFrom from
, size = Maybe.withDefault defaultSize size
, sort =
sort
|> Maybe.withDefault ""
|> fromSortId
|> Maybe.withDefault Relevance
}
, Browser.Dom.focus "search-query-input" |> Task.attempt (\_ -> NoOp)
)
-- ---------------------------
-- UPDATE
-- ---------------------------
type Msg a
2020-05-11 19:56:10 +00:00
= NoOp
| SortChange String
2020-05-11 20:42:57 +00:00
| ChannelChange String
2020-05-11 19:56:10 +00:00
| QueryInput String
| QueryInputSubmit
2020-07-02 12:27:49 +00:00
| QueryResponse (RemoteData.WebData (SearchResult a))
| ShowDetails String
update :
String
-> Browser.Navigation.Key
-> Msg a
-> Model a
-> ( Model a, Cmd (Msg a) )
2020-07-24 21:01:16 +00:00
update path navKey msg model =
case msg of
2020-05-11 19:56:10 +00:00
NoOp ->
( model
, Cmd.none
)
SortChange sortId ->
let
sort =
fromSortId sortId |> Maybe.withDefault Relevance
in
( { model | sort = sort }
, createUrl
path
model.channel
model.query
model.show
0
model.size
sort
|> Browser.Navigation.pushUrl navKey
)
2020-05-11 20:42:57 +00:00
ChannelChange channel ->
( { model
| channel = channel
, result =
if model.query == Nothing || model.query == Just "" then
RemoteData.NotAsked
else
RemoteData.Loading
}
, if model.query == Nothing || model.query == Just "" then
Cmd.none
else
createUrl
path
channel
model.query
model.show
0
model.size
model.sort
|> Browser.Navigation.pushUrl navKey
2020-05-11 20:42:57 +00:00
)
QueryInput query ->
2020-07-24 21:01:16 +00:00
( { model | query = Just query }
, Cmd.none
)
QueryInputSubmit ->
if model.query == Nothing || model.query == Just "" then
( model, Cmd.none )
else
( { model | result = RemoteData.Loading }
, createUrl
path
model.channel
model.query
model.show
0
model.size
model.sort
|> Browser.Navigation.pushUrl navKey
)
QueryResponse result ->
( { model | result = result }
, Cmd.none
)
ShowDetails selected ->
( model
2020-05-11 20:42:57 +00:00
, createUrl
path
model.channel
model.query
(if model.show == Just selected then
Nothing
else
Just selected
)
2020-05-11 19:56:10 +00:00
model.from
model.size
model.sort
|> (\x -> x ++ "#disabled")
|> Browser.Navigation.pushUrl navKey
)
2020-05-11 19:56:10 +00:00
createUrl :
String
2020-05-11 20:42:57 +00:00
-> String
2020-05-11 19:56:10 +00:00
-> Maybe String
-> Maybe String
-> Int
-> Int
-> Sort
2020-05-11 19:56:10 +00:00
-> String
createUrl path channel query show from size sort =
2020-05-11 19:56:10 +00:00
[ Url.Builder.int "from" from
, Url.Builder.int "size" size
, Url.Builder.string "sort" <| toSortId sort
2020-05-11 20:42:57 +00:00
, Url.Builder.string "channel" channel
2020-05-11 19:56:10 +00:00
]
|> List.append
(query
|> Maybe.map
(\x ->
[ Url.Builder.string "query" x ]
)
|> Maybe.withDefault []
)
|> List.append
(show
|> Maybe.map
(\x ->
[ Url.Builder.string "show" x
]
)
|> Maybe.withDefault []
)
|> Url.Builder.absolute [ path ]
-- VIEW
type Channel
= Unstable
| Release_19_09
| Release_20_03
type alias ChannelDetails =
{ id : String
, title : String
, jobset : String
, branch : String
}
channelDetails : Channel -> ChannelDetails
channelDetails channel =
case channel of
Unstable ->
ChannelDetails "unstable" "unstable" "nixos/trunk-combined" "nixos-unstable"
Release_19_09 ->
ChannelDetails "19.09" "19.09" "nixos/release-19.09" "nixos-19.09"
Release_20_03 ->
ChannelDetails "20.03" "20.03" "nixos/release-20.03" "nixos-20.03"
channelFromId : String -> Maybe Channel
channelFromId channel_id =
case channel_id of
"unstable" ->
Just Unstable
"19.09" ->
Just Release_19_09
"20.03" ->
Just Release_20_03
_ ->
Nothing
channelDetailsFromId : String -> Maybe ChannelDetails
channelDetailsFromId channel_id =
channelFromId channel_id
|> Maybe.map channelDetails
channels : List String
channels =
2020-07-09 16:08:06 +00:00
[ "19.09"
, "20.03"
2020-07-09 16:08:06 +00:00
, "unstable"
]
sortBy : List Sort
sortBy =
[ Relevance
, AlphabeticallyAsc
, AlphabeticallyDesc
]
toSortQuery :
Sort
-> String
-> ( String, Json.Encode.Value )
toSortQuery sort field =
( "sort"
, case sort of
AlphabeticallyAsc ->
Json.Encode.list Json.Encode.object
[ [ ( field, Json.Encode.string "asc" )
]
]
AlphabeticallyDesc ->
Json.Encode.list Json.Encode.object
[ [ ( field, Json.Encode.string "desc" )
]
]
Relevance ->
Json.Encode.list Json.Encode.string
[ "_score"
]
)
toSortTitle : Sort -> String
toSortTitle sort =
case sort of
AlphabeticallyAsc ->
"Alphabetically Ascending"
AlphabeticallyDesc ->
"Alphabetically Descending"
Relevance ->
"Relevance"
toSortId : Sort -> String
toSortId sort =
case sort of
AlphabeticallyAsc ->
"alpha_asc"
AlphabeticallyDesc ->
"alpha_desc"
Relevance ->
"relevance"
fromSortId : String -> Maybe Sort
fromSortId id =
case id of
"alpha_asc" ->
Just AlphabeticallyAsc
"alpha_desc" ->
Just AlphabeticallyDesc
"relevance" ->
Just Relevance
_ ->
Nothing
view :
2020-05-11 19:56:10 +00:00
String
-> String
-> Model a
2020-07-02 12:27:49 +00:00
-> (String -> Maybe String -> SearchResult a -> Html b)
-> (Msg a -> b)
-> Html b
2020-05-11 19:56:10 +00:00
view path title model viewSuccess outMsg =
div
2020-07-24 21:01:16 +00:00
[ class "search-page"
]
2020-05-11 19:56:10 +00:00
[ h1 [ class "page-header" ] [ text title ]
, div
[ class "search-input"
2020-07-02 12:27:49 +00:00
]
[ form [ onSubmit (outMsg QueryInputSubmit) ]
[ p
[]
([]
|> List.append
(if List.member model.channel channels then
[]
else
[ p [ class "alert alert-error" ]
[ h4 [] [ text "Wrong channel selected!" ]
, text <| "Please select one of the channels above!"
]
]
)
|> List.append
[ p []
[ strong []
[ text "Channel: " ]
, div
[ class "btn-group"
, attribute "data-toggle" "buttons-radio"
]
(List.filterMap
(\channel_id ->
channelDetailsFromId channel_id
|> Maybe.map
(\channel ->
button
[ type_ "button"
, classList
[ ( "btn", True )
, ( "active", channel.id == model.channel )
]
, onClick <| outMsg (ChannelChange channel.id)
]
[ text channel.title ]
)
)
channels
)
]
]
)
, p
[ class "input-append"
]
[ input
2020-07-24 21:01:16 +00:00
[ type_ "text"
, id "search-query-input"
, autofocus True
, placeholder <| "Search for " ++ path
, onInput (\x -> outMsg (QueryInput x))
, value <| Maybe.withDefault "" model.query
]
[]
2020-07-02 12:27:49 +00:00
, div [ class "loader" ] []
, div [ class "btn-group" ]
[ button [ class "btn" ] [ text "Search" ]
]
2020-05-11 20:42:57 +00:00
]
]
]
, case model.result of
RemoteData.NotAsked ->
div [] [ text "" ]
RemoteData.Loading ->
2020-06-11 16:50:53 +00:00
div [ class "loader" ] [ text "Loading..." ]
RemoteData.Success result ->
if result.hits.total.value == 0 then
div []
[ h4 [] [ text <| "No " ++ path ++ " found!" ]
]
else
div []
[ p []
[ em []
[ text
("Showing results "
++ String.fromInt model.from
++ "-"
++ String.fromInt
(if model.from + model.size > result.hits.total.value then
result.hits.total.value
else
model.from + model.size
)
++ " of "
++ (if result.hits.total.value == 10000 then
"more than 10000 results, please provide more precise search terms."
else
String.fromInt result.hits.total.value
++ "."
)
)
]
2020-05-11 19:56:10 +00:00
]
, form [ class "form-horizontal pull-right" ]
[ div
[ class "control-group"
]
[ label [ class "control-label" ] [ text "Sort by:" ]
, div
[ class "controls" ]
[ select
[ onInput (\x -> outMsg (SortChange x))
]
(List.map
(\sort ->
option
[ selected (model.sort == sort)
, value (toSortId sort)
]
[ text <| toSortTitle sort ]
)
sortBy
)
]
]
]
, viewPager outMsg model result path
, viewSuccess model.channel model.show result
, viewPager outMsg model result path
2020-05-11 19:56:10 +00:00
]
RemoteData.Failure error ->
let
( errorTitle, errorMessage ) =
case error of
Http.BadUrl text ->
( "Bad Url!", text )
Http.Timeout ->
( "Timeout!", "Request to the server timeout." )
Http.NetworkError ->
2020-06-10 00:05:04 +00:00
( "Network Error!", "A network request bonsaisearch.net domain failed. This is either due to a content blocker or a networking issue." )
Http.BadStatus code ->
( "Bad Status", "Server returned " ++ String.fromInt code )
Http.BadBody text ->
( "Bad Body", text )
in
div [ class "alert alert-error" ]
[ h4 [] [ text errorTitle ]
, text errorMessage
]
]
2020-05-11 19:56:10 +00:00
viewPager :
(Msg a -> b)
-> Model a
2020-07-02 12:27:49 +00:00
-> SearchResult a
2020-05-11 19:56:10 +00:00
-> String
-> Html b
2020-07-02 12:27:49 +00:00
viewPager _ model result path =
2020-05-11 19:56:10 +00:00
ul [ class "pager" ]
[ li
[ classList
[ ( "disabled", model.from == 0 )
]
]
[ a
[ if model.from == 0 then
href "#disabled"
else
href <|
createUrl
path
2020-05-11 20:42:57 +00:00
model.channel
2020-05-11 19:56:10 +00:00
model.query
model.show
2020-05-11 19:56:10 +00:00
0
model.size
model.sort
2020-05-11 19:56:10 +00:00
]
[ text "First" ]
]
, li
[ classList
[ ( "disabled", model.from == 0 )
]
]
[ a
[ href <|
if model.from - model.size < 0 then
"#disabled"
else
createUrl
path
2020-05-11 20:42:57 +00:00
model.channel
2020-05-11 19:56:10 +00:00
model.query
model.show
2020-05-11 19:56:10 +00:00
(model.from - model.size)
model.size
model.sort
2020-05-11 19:56:10 +00:00
]
[ text "Previous" ]
]
, li
[ classList
[ ( "disabled", model.from + model.size >= result.hits.total.value )
]
]
[ a
[ href <|
if model.from + model.size >= result.hits.total.value then
"#disabled"
else
createUrl
path
2020-05-11 20:42:57 +00:00
model.channel
2020-05-11 19:56:10 +00:00
model.query
model.show
2020-05-11 19:56:10 +00:00
(model.from + model.size)
model.size
model.sort
2020-05-11 19:56:10 +00:00
]
[ text "Next" ]
]
, li
[ classList
[ ( "disabled", model.from + model.size >= result.hits.total.value )
]
]
[ a
[ href <|
if model.from + model.size >= result.hits.total.value then
"#disabled"
else
let
remainder =
if remainderBy model.size result.hits.total.value == 0 then
1
else
0
in
2020-05-11 19:56:10 +00:00
createUrl
path
2020-05-11 20:42:57 +00:00
model.channel
2020-05-11 19:56:10 +00:00
model.query
model.show
(((result.hits.total.value // model.size) - remainder) * model.size)
2020-05-11 19:56:10 +00:00
model.size
model.sort
2020-05-11 19:56:10 +00:00
]
[ text "Last" ]
]
]
-- API
type alias Options =
{ mappingSchemaVersion : Int
, url : String
, username : String
, password : String
}
2020-06-19 06:53:49 +00:00
filter_by_type :
String
2020-08-29 23:03:09 +00:00
-> List ( String, Json.Encode.Value )
2020-06-19 06:53:49 +00:00
filter_by_type type_ =
2020-08-29 23:03:09 +00:00
[ ( "term"
, Json.Encode.object
[ ( "type"
, Json.Encode.object
[ ( "value", Json.Encode.string type_ )
, ( "_name", Json.Encode.string <| "filter_" ++ type_ ++ "s" )
]
)
]
)
]
2020-06-19 06:53:49 +00:00
2020-08-29 23:03:09 +00:00
search_fields :
Float
2020-08-29 23:03:09 +00:00
-> List String
-> List ( String, Float )
2020-08-29 23:03:09 +00:00
-> List (List ( String, Json.Encode.Value ))
search_fields baseScore queryWords fields =
queryWords
2020-08-29 23:03:09 +00:00
|> List.reverse
|> List.indexedMap
(\queryIndex queryWord ->
[ ( "multi_match"
, Json.Encode.object
[ ( "type", Json.Encode.string "bool_prefix" )
2020-08-29 23:03:09 +00:00
, ( "query", Json.Encode.string queryWord )
, ( "analyzer", Json.Encode.string "lowercase" )
, ( "auto_generate_synonyms_phrase_query", Json.Encode.bool False )
, ( "prefix_length", Json.Encode.int 3 )
2020-08-29 23:03:09 +00:00
, ( "operator", Json.Encode.string "or" )
, ( "_name"
, Json.Encode.string <| "multi_match_" ++ queryWord ++ "_" ++ (queryIndex + 1 |> String.fromInt)
)
, ( "fields"
, Json.Encode.list Json.Encode.string
(List.map
(\( field, score ) -> field ++ "^" ++ (baseScore * (score + (0.1 * (queryIndex + 1 |> toFloat))) |> String.fromFloat))
fields
)
2020-08-29 23:03:09 +00:00
)
]
)
]
)
2020-06-19 06:53:49 +00:00
makeRequestBody :
String
-> Int
-> Int
-> Sort
-> String
2020-06-19 06:53:49 +00:00
-> String
-> List ( String, Float )
2020-06-19 06:53:49 +00:00
-> Http.Body
2020-08-29 23:03:09 +00:00
makeRequestBody query from sizeRaw sort type_ sortField fields =
2020-07-02 12:27:49 +00:00
let
-- you can not request more then 10000 results otherwise it will return 404
size =
if from + sizeRaw > 10000 then
10000 - from
else
sizeRaw
in
2020-06-19 06:53:49 +00:00
Http.jsonBody
(Json.Encode.object
[ ( "from"
, Json.Encode.int from
)
, ( "size"
, Json.Encode.int size
)
2020-08-29 23:03:09 +00:00
, toSortQuery sort sortField
2020-06-19 06:53:49 +00:00
, ( "query"
, Json.Encode.object
[ ( "bool"
, Json.Encode.object
[ ( "filter"
, Json.Encode.list Json.Encode.object
2020-08-29 23:03:09 +00:00
[ filter_by_type type_ ]
2020-06-19 06:53:49 +00:00
)
2020-08-29 23:03:09 +00:00
, ( "must"
, Json.Encode.list Json.Encode.object
[ [ ( "dis_max"
, Json.Encode.object
[ ( "tie_breaker", Json.Encode.float 0.7 )
, ( "queries"
, Json.Encode.list Json.Encode.object
[ [ ( "bool"
, Json.Encode.object
[ ( "must"
, Json.Encode.list Json.Encode.object <|
search_fields
1.0
(String.words query)
fields
)
]
)
]
, [ ( "bool"
, Json.Encode.object
[ ( "must"
, Json.Encode.list Json.Encode.object <|
search_fields
0.8
(String.words query |> List.map String.reverse)
(List.map (\( field, score ) -> ( field ++ "_reverse", score )) fields)
)
]
)
]
]
)
]
)
]
]
2020-06-19 06:53:49 +00:00
)
]
)
]
)
]
)
makeRequest :
2020-06-19 06:53:49 +00:00
Http.Body
-> String
-> Json.Decode.Decoder a
-> Options
2020-07-02 12:27:49 +00:00
-> (RemoteData.WebData (SearchResult a) -> Msg a)
-> Maybe String
-> Cmd (Msg a)
2020-07-02 12:27:49 +00:00
makeRequest body index decodeResultItemSource options responseMsg tracker =
Http.riskyRequest
{ method = "POST"
, headers =
[ Http.header "Authorization" ("Basic " ++ Base64.encode (options.username ++ ":" ++ options.password))
]
, url = options.url ++ "/" ++ index ++ "/_search"
2020-06-19 06:53:49 +00:00
, body = body
, expect =
Http.expectJson
2020-07-02 12:27:49 +00:00
(RemoteData.fromResult >> responseMsg)
(decodeResult decodeResultItemSource)
, timeout = Nothing
2020-07-02 12:27:49 +00:00
, tracker = tracker
}
-- JSON
decodeResult :
Json.Decode.Decoder a
2020-07-02 12:27:49 +00:00
-> Json.Decode.Decoder (SearchResult a)
decodeResult decodeResultItemSource =
2020-07-24 21:01:16 +00:00
Json.Decode.map SearchResult
(Json.Decode.field "hits" (decodeResultHits decodeResultItemSource))
decodeResultHits : Json.Decode.Decoder a -> Json.Decode.Decoder (ResultHits a)
decodeResultHits decodeResultItemSource =
Json.Decode.map3 ResultHits
(Json.Decode.field "total" decodeResultHitsTotal)
(Json.Decode.field "max_score" (Json.Decode.nullable Json.Decode.float))
(Json.Decode.field "hits" (Json.Decode.list (decodeResultItem decodeResultItemSource)))
decodeResultHitsTotal : Json.Decode.Decoder ResultHitsTotal
decodeResultHitsTotal =
Json.Decode.map2 ResultHitsTotal
(Json.Decode.field "value" Json.Decode.int)
(Json.Decode.field "relation" Json.Decode.string)
decodeResultItem : Json.Decode.Decoder a -> Json.Decode.Decoder (ResultItem a)
decodeResultItem decodeResultItemSource =
2020-07-02 12:27:49 +00:00
Json.Decode.map6 ResultItem
(Json.Decode.field "_index" Json.Decode.string)
(Json.Decode.field "_id" Json.Decode.string)
(Json.Decode.field "_score" (Json.Decode.nullable Json.Decode.float))
(Json.Decode.field "_source" decodeResultItemSource)
2020-07-02 12:27:49 +00:00
(Json.Decode.maybe (Json.Decode.field "text" Json.Decode.string))
2020-06-18 10:24:52 +00:00
(Json.Decode.maybe (Json.Decode.field "matched_queries" (Json.Decode.list Json.Decode.string)))