Top | ![]() |
![]() |
![]() |
![]() |
FlatpakRemote * | flatpak_remote_new () |
const char * | flatpak_remote_get_name () |
GFile * | flatpak_remote_get_appstream_dir () |
GFile * | flatpak_remote_get_appstream_timestamp () |
char * | flatpak_remote_get_collection_id () |
void | flatpak_remote_set_collection_id () |
char * | flatpak_remote_get_default_branch () |
void | flatpak_remote_set_default_branch () |
gboolean | flatpak_remote_get_gpg_verify () |
void | flatpak_remote_set_gpg_verify () |
void | flatpak_remote_set_gpg_key () |
gboolean | flatpak_remote_get_nodeps () |
void | flatpak_remote_set_nodeps () |
gboolean | flatpak_remote_get_noenumerate () |
void | flatpak_remote_set_noenumerate () |
int | flatpak_remote_get_prio () |
void | flatpak_remote_set_prio () |
FlatpakRemoteType | flatpak_remote_get_remote_type () |
char * | flatpak_remote_get_title () |
void | flatpak_remote_set_title () |
char * | flatpak_remote_get_url () |
void | flatpak_remote_set_url () |
gboolean | flatpak_remote_get_disabled () |
void | flatpak_remote_set_disabled () |
A FlatpakRemote object provides information about a remote repository (or short: remote) that has been configured.
At its most basic level, a remote has a name and the URL for the repository. In addition, they provide some additional information that can be useful when presenting repositories in a UI, such as a title, a priority or a "don't enumerate" flags.
To obtain FlatpakRemote objects for the configured remotes
on a system, use flatpak_installation_list_remotes()
or
flatpak_installation_get_remote_by_name()
.
FlatpakRemote *
flatpak_remote_new (const char *name
);
Returns a new remote object which can be used to configure a new remote.
Note: This is a local configuration object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
const char *
flatpak_remote_get_name (FlatpakRemote *self
);
Returns the name of the remote repository.
GFile * flatpak_remote_get_appstream_dir (FlatpakRemote *self
,const char *arch
);
Returns the directory where this remote will store locally cached
appstream information for the specified arch
.
GFile * flatpak_remote_get_appstream_timestamp (FlatpakRemote *self
,const char *arch
);
Returns the timestamp file that will be updated whenever the appstream information
has been updated (or tried to update) for the specified arch
.
char *
flatpak_remote_get_collection_id (FlatpakRemote *self
);
Returns the repository collection ID of this remote, if set.
void flatpak_remote_set_collection_id (FlatpakRemote *self
,const char *collection_id
);
Sets the repository collection ID of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
char *
flatpak_remote_get_default_branch (FlatpakRemote *self
);
Returns the default branch configured for the remote.
Since: 0.6.12
void flatpak_remote_set_default_branch (FlatpakRemote *self
,const char *default_branch
);
Sets the default branch configured for this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
Since: 0.6.12
gboolean
flatpak_remote_get_gpg_verify (FlatpakRemote *self
);
Returns whether GPG verification is enabled for the remote.
void flatpak_remote_set_gpg_verify (FlatpakRemote *self
,gboolean gpg_verify
);
Sets the gpg_verify config of this remote. See flatpak_remote_get_gpg_verify()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
void flatpak_remote_set_gpg_key (FlatpakRemote *self
,GBytes *gpg_key
);
Sets the trusted gpg key for this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
gboolean
flatpak_remote_get_nodeps (FlatpakRemote *self
);
Returns whether this remote should be used to find dependencies.
void flatpak_remote_set_nodeps (FlatpakRemote *self
,gboolean nodeps
);
Sets the nodeps config of this remote. See flatpak_remote_get_nodeps()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
gboolean
flatpak_remote_get_noenumerate (FlatpakRemote *self
);
Returns whether this remote should be used to list applications.
void flatpak_remote_set_noenumerate (FlatpakRemote *self
,gboolean noenumerate
);
Sets the noenumeration config of this remote. See flatpak_remote_get_noenumerate()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
int
flatpak_remote_get_prio (FlatpakRemote *self
);
Returns the priority for the remote.
void flatpak_remote_set_prio (FlatpakRemote *self
,int prio
);
Sets the prio config of this remote. See flatpak_remote_get_prio()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
FlatpakRemoteType
flatpak_remote_get_remote_type (FlatpakRemote *self
);
Get the value of “type”.
Since: 0.9.8
char *
flatpak_remote_get_title (FlatpakRemote *self
);
Returns the title of the remote.
void flatpak_remote_set_title (FlatpakRemote *self
,const char *title
);
Sets the repository title of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
char *
flatpak_remote_get_url (FlatpakRemote *self
);
Returns the repository URL of this remote.
void flatpak_remote_set_url (FlatpakRemote *self
,const char *url
);
Sets the repository URL of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
gboolean
flatpak_remote_get_disabled (FlatpakRemote *self
);
Returns whether this remote is disabled.
void flatpak_remote_set_disabled (FlatpakRemote *self
,gboolean disabled
);
Sets the disabled config of this remote. See flatpak_remote_get_disabled()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
“name”
property “name” gchar *
Name of the remote, as used in configuration files and when interfacing
with OSTree. This is typically human readable, but could be generated, and
must conform to ostree_validate_remote_name()
. It should typically not be
presented in the UI.
Flags: Read / Write
Default value: NULL
“type”
property“type” FlatpakRemoteType
The type of the remote: whether it comes from static configuration files
(FLATPAK_REMOTE_TYPE_STATIC
) or has been dynamically found from the local
network or a mounted USB drive (FLATPAK_REMOTE_TYPE_LAN
,
FLATPAK_REMOTE_TYPE_USB
). Dynamic remotes may be added and removed over
time.
Flags: Read / Write / Construct Only
Default value: FLATPAK_REMOTE_TYPE_STATIC
Since: 0.9.8