bovine_store
BovineAdminStore
Store for managing actors. This store should be used to create actor management interfaces. Usage:
store = BovineAdmineStore(domain="cows.example")
bovine_name = await store.register("moocow")
await store.add_identity_string_to_actor(
bovine_name, "sample", "did:example:123")
This will create the account @moocow@cows.example
which can be accessed
through Moo-Auth-1 with the secret corresponding to the did.
These can be kept separate from the actual fediverse server implementation.
For usage see bovine_tool
and bovine_management
.
The parameters endpoint_path, endpoint_path_function can probably be removed at one point. The parameter domain can actually be of the form “http://domain_name” or “https://domain_name”. This is useful for end to end tests.
Source code in bovine_store/bovine_store/__init__.py
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 |
|
actor_for_name(bovine_name)
async
Retrieves the actor for a given bovine_name
Source code in bovine_store/bovine_store/__init__.py
add_identity_string_to_actor(bovine_name, name, identity)
async
Modifies an Actor by adding a new identity to it. name is used to identity the identity and serves little functional purpose.
Source code in bovine_store/bovine_store/__init__.py
register(handle_name, endpoints={})
async
registers a new user with handle_name. The domain is extracted from the endpoint path configured when creating the store. This method generates the necessary private keys for the actor. Implementations of bovine should never require one adding a secret.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
handle_name
|
str
|
The username |
required |
endpoints
|
dict
|
dictionary of predefined endpoints. |
{}
|
Returns:
Type | Description |
---|---|
str
|
The bovine name given by handle_name + uuid4 |
Source code in bovine_store/bovine_store/__init__.py
set_properties_for_actor(bovine_name, properties)
async
Sets a new properties object for the actor
Source code in bovine_store/bovine_store/__init__.py
BovineStore
Basic interface for the bovine store, should be used to obtain actors.
Source code in bovine_store/bovine_store/__init__.py
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 |
|
actor_for_name(bovine_name)
async
Retrieves the actor for a given bovine_name
Source code in bovine_store/bovine_store/__init__.py
application_actor_for_url(url)
async
Returns the application actor fot the given url
Source code in bovine_store/bovine_store/__init__.py
get_account_url_for_identity(identity)
async
Returns the account, i.e. the identity starting with acct:, and the actoru_url for a given identity
Source code in bovine_store/bovine_store/__init__.py
resolve_endpoint(endpoint)
async
Given the url of an endpoint, returns the type of the endpoint, e.g. inbox, and the corresponding BovineStoreActor
Source code in bovine_store/bovine_store/__init__.py
resolve_endpoint_no_cache(endpoint)
async
Given the url of an endpoint, returns the type of the endpoint, e.g. inbox, and the corresponding BovineStoreActor
Source code in bovine_store/bovine_store/__init__.py
retrieve(retriever, object_id, include=[])
async
Retrieves the object identified by object_it for the retriever. This is used when a GET request happens, as it is unclear to which actor the object_id belongs.
Source code in bovine_store/bovine_store/__init__.py
retrieve_for_get(retriever, object_id)
async
user_count()
async
Returns the total number of bovine actors used in nodeinfo, this count probably lies with bovine being a multi hostname server and supporting bot accounts.
Source code in bovine_store/bovine_store/__init__.py
bovine_admin_store(db_url, domain=None)
async
Allows one to manage a BovineAdminStore
using an async context manager.