search/configuration_types.rs
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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
//! This module defines the structures that we use for serde_json to parse
//! the search configuration.
use crate::{
SearchApplicationName, SearchDeviceType, SearchEngineClassification, SearchUpdateChannel,
SearchUrlParam,
};
use serde::Deserialize;
/// The list of possible submission methods for search engine urls.
#[derive(Debug, uniffi::Enum, PartialEq, Deserialize, Clone, Default)]
#[serde(rename_all = "UPPERCASE")]
pub(crate) enum JSONEngineMethod {
Post = 2,
#[serde(other)]
#[default]
Get = 1,
}
impl JSONEngineMethod {
pub fn as_str(&self) -> &'static str {
match self {
JSONEngineMethod::Get => "GET",
JSONEngineMethod::Post => "POST",
}
}
}
/// Defines an individual search engine URL. This is defined separately to
/// `types::SearchEngineUrl` as various fields may be optional in the supplied
/// configuration.
#[derive(Debug, uniffi::Record, PartialEq, Deserialize, Clone, Default)]
#[serde(rename_all = "camelCase")]
pub(crate) struct JSONEngineUrl {
/// The PrePath and FilePath of the URL. May include variables for engines
/// which have a variable FilePath, e.g. `{searchTerm}` for when a search
/// term is within the path of the url.
pub base: String,
/// The HTTP method to use to send the request (`GET` or `POST`).
/// If the engine definition has not specified the method, it defaults to GET.
pub method: Option<JSONEngineMethod>,
/// The parameters for this URL.
pub params: Option<Vec<SearchUrlParam>>,
/// The name of the query parameter for the search term. Automatically
/// appended to the end of the query. This may be skipped if `{searchTerm}`
/// is included in the base.
pub search_term_param_name: Option<String>,
}
/// Reflects `types::SearchEngineUrls`, but using `EngineUrl`.
#[derive(Debug, uniffi::Record, PartialEq, Deserialize, Clone, Default)]
#[serde(rename_all = "camelCase")]
pub(crate) struct JSONEngineUrls {
/// The URL to use for searches.
pub search: JSONEngineUrl,
/// The URL to use for suggestions.
pub suggestions: Option<JSONEngineUrl>,
/// The URL to use for trending suggestions.
pub trending: Option<JSONEngineUrl>,
}
/// Represents the engine base section of the configuration.
#[derive(Debug, Default, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub(crate) struct JSONEngineBase {
/// A list of aliases for this engine.
pub aliases: Option<Vec<String>>,
/// The character set this engine uses for queries. Defaults to 'UTF=8' if not set.
pub charset: Option<String>,
/// The classification of search engine according to the main search types
/// (e.g. general, shopping, travel, dictionary). Currently, only marking as
/// a general search engine is supported.
pub classification: SearchEngineClassification,
/// The user visible name for the search engine.
pub name: String,
/// The partner code for the engine. This will be inserted into parameters
/// which include `{partnerCode}`.
pub partner_code: Option<String>,
/// The URLs associated with the search engine.
pub urls: JSONEngineUrls,
}
/// Specifies details of possible user environments that the engine or variant
/// applies to.
#[derive(Debug, Deserialize, Clone, Default)]
#[serde(rename_all = "camelCase")]
pub(crate) struct JSONVariantEnvironment {
/// Indicates that this section applies to all regions and locales. May be
/// modified by excluded_regions/excluded_locales.
#[serde(default)]
pub all_regions_and_locales: bool,
/// A vector of locales that this section should be excluded from. 'default'
/// will apply to situations where we have not been able to detect the user's
/// locale.
#[serde(default)]
pub excluded_locales: Vec<String>,
/// A vector of regions that this section should be excluded from. 'default'
/// will apply to situations where we have not been able to detect the user's
/// region.
#[serde(default)]
pub excluded_regions: Vec<String>,
/// A vector of locales that this section applies to. 'default' will apply
/// to situations where we have not been able to detect the user's locale.
#[serde(default)]
pub locales: Vec<String>,
/// A vector of regions that this section applies to. 'default' will apply
/// to situations where we have not been able to detect the user's region.
#[serde(default)]
pub regions: Vec<String>,
/// A vector of distribution identifiers that this section applies to.
#[serde(default)]
pub distributions: Vec<String>,
/// A vector of distributions that this section should be excluded from.
#[serde(default)]
pub excluded_distributions: Vec<String>,
/// A vector of applications that this applies to.
#[serde(default)]
pub applications: Vec<SearchApplicationName>,
/// A vector of release channels that this section applies to (not set = everywhere).
#[serde(default)]
pub channels: Vec<SearchUpdateChannel>,
/// The experiment that this section applies to.
#[serde(default)]
pub experiment: String,
/// The minimum application version this section applies to.
#[serde(default)]
pub min_version: String,
/// The maximum application version this section applies to.
#[serde(default)]
pub max_version: String,
#[serde(default)]
pub device_type: Vec<SearchDeviceType>,
}
/// Describes an individual variant of a search engine.
#[derive(Debug, Deserialize, Clone)]
pub(crate) struct JSONEngineVariant {
/// Details of the possible user environments that this variant applies to.
pub environment: JSONVariantEnvironment,
}
/// Represents an individual engine record in the configuration.
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub(crate) struct JSONEngineRecord {
/// The identiifer for the search engine.
pub identifier: String,
/// The base information of the search engine, may be extended by the
/// variants.
pub base: JSONEngineBase,
/// Describes variations of this search engine that may occur depending on
/// the user's environment. The last variant that matches the user's
/// environment will be applied to the engine, subvariants may also be applied.
pub variants: Vec<JSONEngineVariant>,
}
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub(crate) struct JSONSpecificDefaultRecord {
/// The identifier of the engine that will be used as the application default
/// for the associated environment. If the entry is suffixed with a star,
/// matching is applied on a "starts with" basis.
#[serde(default)]
pub default: String,
/// The identifier of the engine that will be used as the application default
/// in private mode for the associated environment. If the entry is suffixed
/// with a star, matching is applied on a "starts with" basis.
#[serde(default)]
pub default_private: String,
/// The specific environment to match for this record.
pub environment: JSONVariantEnvironment,
}
/// Represents the default engines record.
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub(crate) struct JSONDefaultEnginesRecord {
/// The identifier of the engine that will be used as the application default
/// if no other engines are specified as default.
pub global_default: String,
/// The identifier of the engine that will be used as the application default
/// in private mode if no other engines are specified as default.
#[serde(default)]
pub global_default_private: String,
/// The specific environment filters to set a different default engine. The
/// array is ordered, when multiple entries match on environments, the later
/// entry will override earlier entries.
#[serde(default)]
pub specific_defaults: Vec<JSONSpecificDefaultRecord>,
}
/// Represents the engine orders record.
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub(crate) struct JSONEngineOrdersRecord {
// TODO: Implementation.
}
/// Represents an individual record in the raw search configuration.
#[derive(Debug, Deserialize, Clone)]
#[serde(tag = "recordType", rename_all = "camelCase")]
pub(crate) enum JSONSearchConfigurationRecords {
DefaultEngines(JSONDefaultEnginesRecord),
Engine(Box<JSONEngineRecord>),
EngineOrders(JSONEngineOrdersRecord),
// Include some flexibilty if we choose to add new record types in future.
// Current versions of the application receiving the configuration will
// ignore the new record types.
#[serde(other)]
Unknown,
}
/// Represents the search configuration as received from remote settings.
#[derive(Debug, Deserialize)]
pub(crate) struct JSONSearchConfiguration {
pub data: Vec<JSONSearchConfigurationRecords>,
}