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
/*
 * Copyright (c) 2016-2017 Boucher, Antoni <bouanto@zoho.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

//! Message used to communicate between the UI and the web processes.

#![warn(
    missing_docs,
    trivial_casts,
    trivial_numeric_casts,
    unused_extern_crates,
    unused_import_braces,
    unused_qualifications,
    unused_results,
)]

#[macro_use]
extern crate serde_derive;

// TODO: put in the home directory.
/// The path to the unix domain socket.
pub const PATH: &str = "/tmp/titanium";

#[doc(hidden)]
pub type ExtensionId = u64;
#[doc(hidden)]
pub type PageId = u64;

/// Action that should be executed from the UI process.
#[derive(Clone, Copy, Debug, Deserialize, Serialize)]
pub enum Action {
    /// Show the file input.
    FileInput,
    /// Go in insert mode.
    GoInInsertMode,
    /// No action.
    NoAction,
}

/// Message with the associated window/page id.
#[derive(Debug, Deserialize, Serialize)]
pub struct Message(pub PageId, pub InnerMessage);

/// Message representing actions to to in the web page.
// Switch to SimpleMsg to avoid these empty ().
#[derive(Clone, Debug, Deserialize, Serialize)]
pub enum InnerMessage {
    /// Response to ActivateHint.
    ActivateAction(Action),
    /// Activate the selected hint according to the specified follow mode.
    ActivateHint(String),
    /// Click on the link in the selection.
    ActivateSelection(),
    /// Response to EnterHintKey.
    ClickHintElement(),
    /// Regex lookup next page link to click
    ClickNextPage(),
    /// Regex lookup prev page link to click
    ClickPrevPage(),
    /// Response to GetCredentials.
    Credentials(String, String),
    /// Add a key to the current hint text.
    EnterHintKey(char),
    /// Response to FocusInput.
    EnterInsertMode(),
    /// Focus the first text input.
    FocusInput(),
    /// Ask for the credentials from the login form.
    GetCredentials(),
    /// Ask for the scroll percentage of the web page.
    GetScrollPercentage(),
    /// Send the page ID to the application to connect the web extension with the right window.
    /// Answer to GetId.
    Id(ExtensionId, PageId),
    /// Insert some text in the currently focused text field.
    InsertText(String),
    /// Hide the hints.
    HideHints(),
    /// Write the username and password in the login form.
    LoadUsernamePass(String, String),
    /// Open the given URL.
    /// This is used when starting a new titanium process to tell the existing process to open a
    /// new window.
    Open(Vec<String>),
    /// Reset the scroll element to None.
    ResetScrollElement(),
    /// Scroll to the bottom of the web page
    ScrollBottom(),
    /// Scroll vertically by the specified amount of pixels.
    ScrollBy(i64),
    /// Scroll horizontally by the specified amount of pixels.
    ScrollByX(i64),
    /// Response of GetScrollPercentage.
    ScrollPercentage(Percentage),
    /// Scroll to the top of the web page.
    ScrollTop(),
    /// Set the selected file on a file input.
    SelectFile(String),
    /// Show the hints over the elements.
    ShowHints(String),
    /// Submit the login form.
    SubmitLoginForm(),
}

/// Either all the page is shown (hence, no percentage) or a value between 0 and 100.
#[derive(Clone, Copy, Debug, Deserialize, Serialize)]
pub enum Percentage {
    /// No percentage, since all the page is shown.
    All,
    /// A scroll percentage between 0 and 100.
    Percent(i64),
}