Ported webbw
[hcoop/zz_old/domtool2-proto.git] / src / domain.sig
CommitLineData
a11c0ff3 1(* HCoop Domtool (http://hcoop.sourceforge.net/)
2 * Copyright (c) 2006, Adam Chlipala
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
ae3a5b8c 17 *)
a11c0ff3 18
19(* Domain-related primitive actions *)
20
21signature DOMAIN = sig
22
93fc7dd7 23 val yourPath : string -> bool
2f68506c 24 val isIdent : char -> bool
25 val validHost : string -> bool
26 val validDomain : string -> bool
c45f1662 27 val yourDomain : string -> bool
28 val validUser : string -> bool
bb8cc8c9 29 val validEmailUser : string -> bool
2f68506c 30
7e90e261 31 val ip : string Env.arg
32
0ea0ecfa 33 val registerResetGlobal : (unit -> unit) -> unit
34 val registerResetLocal : (unit -> unit) -> unit
35 (* Register functions for clearing out all Domtool configuration at the global
36 * (AFS) and local levels, respectively. *)
37
38 val resetGlobal : unit -> unit
39 val resetLocal : unit -> unit
40 (* Call all registered functions *)
41
a11c0ff3 42 val registerBefore : (string -> unit) -> unit
43 val registerAfter : (string -> unit) -> unit
44 (* Register handlers to run just before and after entering a domain
45 * block. *)
46
ae3a5b8c 47 val currentDomain : unit -> string
48
668e333e 49 val domainFile : {node : string, name : string} -> TextIO.outstream
50 (* Open one of the current domain's configuration files for a particular
51 * node. *)
ae3a5b8c 52
97d03e40 53 val currentAliasDomains : unit -> string list
54 val currentDomains : unit -> string list
55 (* Return the auxiliary domains being configured (not including
56 * currentDomain) or the list of all domains being configured,
57 * respectively. *)
58
59 (* The type of a set of files open for different domains. *)
60 type files = {write : string -> unit, (* Write a string to each. *)
61 writeDom : unit -> unit, (* Write each's domain name to it. *)
62 close : unit -> unit} (* Close all files. *)
63
64 val domainsFile : {node : string, name : string} -> files
65 (* Open a configuration file for every domain being configured. *)
66
668e333e 67 val dnsMaster : unit -> string option
68 (* Name of the node that is the DNS master for the current domain, if there
69 * is one *)
084d02b1 70
71 val nodes : string list
72 (* Names of all system nodes *)
73 val nodeMap : string Ast.StringMap.map
74 (* Map node names to IP addresses *)
d68ab27c 75 val nodeIp : string -> string
76 (* Look up a node in nodeMap *)
4e8a3f2b 77
78 val setUser : string -> unit
79 val getUser : unit -> string
80 (* Name of the UNIX user providing this configuration *)
81
82 val your_domains : unit -> DataStructures.StringSet.set
83 (* The domains the current user may configure *)
d68ab27c 84
85 val your_users : unit -> DataStructures.StringSet.set
86 val your_groups : unit -> DataStructures.StringSet.set
87 val your_paths : unit -> DataStructures.StringSet.set
88 (* UNIX users, groups, and paths the user may act with *)
d330d9b8 89
90 val set_context : OpenSSL.context -> unit
4cb2e7e7 91
1bb29dea 92 val hasPriv : string -> bool
7d32cf2f 93
aba1f07e 94 val rmdom : string list -> unit
32a3db08 95 val rmdom' : string -> string list -> unit
73e665f1 96
97 val homedirOf : string -> string
98 val homedir : unit -> string
313e60f9 99
100 type subject = {node : string, domain : string}
101
102 val registerDescriber : (subject -> string) -> unit
103 (* When a user runs [domtool-admin describe $DOM], every function passed to
104 * [registerDescriber] will be run on [$DOM]. *)
105 val describe : string -> string
106 (* Argument is domain to describe, over all nodes. *)
107
108 datatype description =
1f5e7aad 109 Filename of { filename : string, heading : string, showEmpty : bool }
313e60f9 110 | Extension of { extension : string, heading : string -> string }
111
112 val considerAll : description list -> subject -> string
113 (* Find files in a domain directory matching some patterns and generate
114 * headings and contents listings for them. *)
a11c0ff3 115end