ownCloud#  0.2.0
C# client library for ownCloud
All Classes Namespaces Functions Variables Enumerations Enumerator Properties
owncloudsharp.Client Class Reference

ownCloud OCS and DAV access client More...

Public Member Functions

 Client (string url, string user_id, string password)
 Initializes a new instance of the owncloudsharp.Client class. More...
 
List< ResourceInfoList (string path)
 List the specified remote path. More...
 
ResourceInfo GetResourceInfo (string path)
 Gets the resource info for the remote path. More...
 
Stream Download (string path)
 Download the specified file. More...
 
bool Upload (string path, Stream data, string contentType)
 Upload the specified file to the specified path. More...
 
bool Exists (string path)
 Checks if the specified remote path exists. More...
 
bool CreateDirectory (string path)
 Creates a new directory at remote path. More...
 
bool Delete (string path)
 Delete resource at the specified remote path. More...
 
bool Copy (string source, string destination)
 Copy the specified source to destination. More...
 
bool Move (string source, string destination)
 Move the specified source and destination. More...
 
Stream DownloadDirectoryAsZip (string path)
 Downloads a remote directory as zip. More...
 
object ListOpenRemoteShare ()
 List all remote shares. More...
 
bool AcceptRemoteShare (int shareId)
 Accepts a remote share More...
 
bool DeclineRemoteShare (int shareId)
 Declines a remote share. More...
 
bool DeleteShare (int shareId)
 Unshares a file or directory. More...
 
bool UpdateShare (int shareId, int perms=-1, string password=null, OcsBoolParam public_upload=OcsBoolParam.None)
 Updates a given share. NOTE: Only one of the update parameters can be specified at once. More...
 
PublicShare ShareWithLink (string path, int perms=-1, string password=null, OcsBoolParam public_upload=OcsBoolParam.None)
 Shares a remote file with link. More...
 
UserShare ShareWithUser (string path, string username, int perms=-1, OcsBoolParam remoteUser=OcsBoolParam.None)
 Shares a remote file with specified user. More...
 
GroupShare ShareWithGroup (string path, string groupName, int perms=-1)
 Shares a remote file with specified group. More...
 
bool IsShared (string path)
 Checks whether a path is already shared. More...
 
List< ShareGetShares (string path, OcsBoolParam reshares=OcsBoolParam.None, OcsBoolParam subfiles=OcsBoolParam.None)
 Gets all shares for the current user when path is not set, otherwise it gets shares for the specific file or folder More...
 
bool CreateUser (string username, string initialPassword)
 Create a new user with an initial password via provisioning API. More...
 
bool DeleteUser (string username)
 Deletes a user via provisioning API. More...
 
bool UserExists (string username)
 Checks a user via provisioning API. More...
 
List< string > SearchUsers (string username)
 Searches for users via provisioning API. More...
 
User GetUserAttributes (string username)
 Gets the user's attributes. More...
 
bool SetUserAttribute (string username, OCSUserAttributeKey key, string value)
 Sets a user attribute. See https://doc.owncloud.com/server/7.0EE/admin_manual/configuration_auth_backends/user_provisioning_api.html#users-edituser for reference. More...
 
bool AddUserToGroup (string username, string groupName)
 Adds a user to a group. More...
 
List< string > GetUserGroups (string username)
 Get a list of groups associated to a user. More...
 
bool IsUserInGroup (string username, string groupName)
 Check if a user is in a group. More...
 
bool RemoveUserFromGroup (string username, string groupName)
 Removes a user from a group. More...
 
bool AddUserToSubAdminGroup (string username, string groupName)
 Adds a user to a subadmin group. More...
 
List< string > GetUserSubAdminGroups (string username)
 Get a list of subadmin groups associated to a user. More...
 
bool IsUserInSubAdminGroup (string username, string groupNname)
 Check if a user is in a subadmin group. More...
 
bool RemoveUserFromSubAdminGroup (string username, string groupName)
 Removes the user from sub admin group. More...
 
bool CreateGroup (string groupName)
 Create a new group via provisioning API. More...
 
bool DeleteGroup (string groupName)
 Deletes the group. More...
 
bool GroupExists (string groupName)
 Checks a group via provisioning API. More...
 
List< string > SearchGroups (string name)
 Searches for groups via provisioning API. More...
 
Config GetConfig ()
 Returns ownCloud config information. More...
 
List< AppAttributeGetAttribute (string app="", string key="")
 Returns an application attribute More...
 
bool SetAttribute (string app, string key, string value)
 Sets an application attribute. More...
 
bool DeleteAttribute (string app, string key)
 Deletes an application attribute. More...
 
List< string > GetApps ()
 List all enabled apps through the provisioning api. More...
 
AppInfo GetApp (string appName)
 Gets information about the specified app. More...
 
bool EnableApp (string appName)
 Enable an app through provisioning_api. More...
 
bool DisableApp (string appName)
 Disable an app through provisioning_api More...
 

Static Public Attributes

static string [] OCSUserAttributeKeyName
 Provides the string values for the OCSUserAttributeKey enum More...
 

Detailed Description

ownCloud OCS and DAV access client

Constructor & Destructor Documentation

◆ Client()

owncloudsharp.Client.Client ( string  url,
string  user_id,
string  password 
)

Initializes a new instance of the owncloudsharp.Client class.

Parameters
urlownCloud instance URL.
user_idUser identifier.
passwordPassword.

Member Function Documentation

◆ AcceptRemoteShare()

bool owncloudsharp.Client.AcceptRemoteShare ( int  shareId)

Accepts a remote share

Returns
true, if remote share was accepted, false otherwise.
Parameters
shareIdShare identifier.

◆ AddUserToGroup()

bool owncloudsharp.Client.AddUserToGroup ( string  username,
string  groupName 
)

Adds a user to a group.

Returns
true, if user was added to group, false otherwise.
Parameters
usernamename of user to be added.
groupNamename of group user is to be added to.

◆ AddUserToSubAdminGroup()

bool owncloudsharp.Client.AddUserToSubAdminGroup ( string  username,
string  groupName 
)

Adds a user to a subadmin group.

Returns
true, if user was added to sub admin group, false otherwise.
Parameters
usernamename of user to be added to subadmin group.
groupNamename of subadmin group.

◆ Copy()

bool owncloudsharp.Client.Copy ( string  source,
string  destination 
)

Copy the specified source to destination.

Parameters
sourceSource resoure path.
destinationDestination resource path.
Returns
true, if resource was copied, false otherwise.

◆ CreateDirectory()

bool owncloudsharp.Client.CreateDirectory ( string  path)

Creates a new directory at remote path.

Returns
true, if directory was created, false otherwise.
Parameters
pathremote Path.

◆ CreateGroup()

bool owncloudsharp.Client.CreateGroup ( string  groupName)

Create a new group via provisioning API.

Returns
true, if group was created, false otherwise.
Parameters
groupNamename of group to be created.

◆ CreateUser()

bool owncloudsharp.Client.CreateUser ( string  username,
string  initialPassword 
)

Create a new user with an initial password via provisioning API.

Returns
true, if user was created, false otherwise.
Parameters
usernamename of user to be created.
initialPasswordpassword for user being created.

◆ DeclineRemoteShare()

bool owncloudsharp.Client.DeclineRemoteShare ( int  shareId)

Declines a remote share.

Returns
true, if remote share was declined, false otherwise.
Parameters
shareIdShare identifier.

◆ Delete()

bool owncloudsharp.Client.Delete ( string  path)

Delete resource at the specified remote path.

Parameters
pathremote Path.
Returns
true, if resource was deleted, false otherwise.

◆ DeleteAttribute()

bool owncloudsharp.Client.DeleteAttribute ( string  app,
string  key 
)

Deletes an application attribute.

Returns
true, if attribute was deleted, false otherwise.
Parameters
appapplication id.
keykey of the attribute to delete.

◆ DeleteGroup()

bool owncloudsharp.Client.DeleteGroup ( string  groupName)

Deletes the group.

Returns
true, if group was deleted, false otherwise.
Parameters
groupNameGroup name.

◆ DeleteShare()

bool owncloudsharp.Client.DeleteShare ( int  shareId)

Unshares a file or directory.

Returns
true, if share was deleted, false otherwise.
Parameters
shareIdShare identifier.

◆ DeleteUser()

bool owncloudsharp.Client.DeleteUser ( string  username)

Deletes a user via provisioning API.

Returns
true, if user was deleted, false otherwise.
Parameters
usernamename of user to be deleted.

◆ DisableApp()

bool owncloudsharp.Client.DisableApp ( string  appName)

Disable an app through provisioning_api

Returns
true, if app was disabled, false otherwise.
Parameters
appNameName of app to be disabled.

◆ Download()

Stream owncloudsharp.Client.Download ( string  path)

Download the specified file.

Parameters
pathFile remote Path.
Returns
File contents.

◆ DownloadDirectoryAsZip()

Stream owncloudsharp.Client.DownloadDirectoryAsZip ( string  path)

Downloads a remote directory as zip.

Returns
The directory as zip.
Parameters
pathpath to the remote directory to download.

◆ EnableApp()

bool owncloudsharp.Client.EnableApp ( string  appName)

Enable an app through provisioning_api.

Returns
true, if app was enabled, false otherwise.
Parameters
appNameName of app to be enabled.

◆ Exists()

bool owncloudsharp.Client.Exists ( string  path)

Checks if the specified remote path exists.

Parameters
pathremote Path.
Returns
true, if remote path exists, false otherwise.

◆ GetApp()

AppInfo owncloudsharp.Client.GetApp ( string  appName)

Gets information about the specified app.

Returns
App information.
Parameters
appNameApp name.

◆ GetApps()

List<string> owncloudsharp.Client.GetApps ( )

List all enabled apps through the provisioning api.

Returns
a list of apps and their enabled state.

◆ GetAttribute()

List<AppAttribute> owncloudsharp.Client.GetAttribute ( string  app = "",
string  key = "" 
)

Returns an application attribute

Returns
App Attribute List.
Parameters
appapplication id.
keyattribute key or None to retrieve all values for the given application.

◆ GetConfig()

Config owncloudsharp.Client.GetConfig ( )

Returns ownCloud config information.

Returns
The config.

◆ GetResourceInfo()

ResourceInfo owncloudsharp.Client.GetResourceInfo ( string  path)

Gets the resource info for the remote path.

Returns
The resource info.
Parameters
pathremote Path.

◆ GetShares()

List<Share> owncloudsharp.Client.GetShares ( string  path,
OcsBoolParam  reshares = OcsBoolParam.None,
OcsBoolParam  subfiles = OcsBoolParam.None 
)

Gets all shares for the current user when path is not set, otherwise it gets shares for the specific file or folder

Returns
array of shares or empty array if the operation failed.
Parameters
path(optional) path to the share to be checked.
reshares(optional) returns not only the shares from the current user but all shares from the given file.
subfiles(optional) returns all shares within a folder, given that path defines a folder.

◆ GetUserAttributes()

User owncloudsharp.Client.GetUserAttributes ( string  username)

Gets the user's attributes.

Returns
The user attributes.
Parameters
usernameUsername.

◆ GetUserGroups()

List<string> owncloudsharp.Client.GetUserGroups ( string  username)

Get a list of groups associated to a user.

Returns
list of groups.
Parameters
usernamename of user to list groups.

◆ GetUserSubAdminGroups()

List<string> owncloudsharp.Client.GetUserSubAdminGroups ( string  username)

Get a list of subadmin groups associated to a user.

Returns
list of subadmin groups.
Parameters
usernamename of user.

◆ GroupExists()

bool owncloudsharp.Client.GroupExists ( string  groupName)

Checks a group via provisioning API.

Returns
true, if group exists, false otherwise.
Parameters
groupNamename of group to be checked.

◆ IsShared()

bool owncloudsharp.Client.IsShared ( string  path)

Checks whether a path is already shared.

Returns
true if this instance is shared the specified path; otherwise, false.
Parameters
pathpath to the share to be checked.

◆ IsUserInGroup()

bool owncloudsharp.Client.IsUserInGroup ( string  username,
string  groupName 
)

Check if a user is in a group.

Returns
true, if user is in group, false otherwise.
Parameters
usernamename of user.
groupNamename of group.

◆ IsUserInSubAdminGroup()

bool owncloudsharp.Client.IsUserInSubAdminGroup ( string  username,
string  groupNname 
)

Check if a user is in a subadmin group.

Returns
true, if user is in sub admin group, false otherwise.
Parameters
usernamename of user.
groupNnamename of subadmin group.

◆ List()

List<ResourceInfo> owncloudsharp.Client.List ( string  path)

List the specified remote path.

Parameters
pathremote Path.
Returns
List of Resources.

◆ ListOpenRemoteShare()

object owncloudsharp.Client.ListOpenRemoteShare ( )

List all remote shares.

Returns
List of remote shares.

◆ Move()

bool owncloudsharp.Client.Move ( string  source,
string  destination 
)

Move the specified source and destination.

Parameters
sourceSource resource path.
destinationDestination resource path.
Returns
true, if resource was moved, false otherwise.

◆ RemoveUserFromGroup()

bool owncloudsharp.Client.RemoveUserFromGroup ( string  username,
string  groupName 
)

Removes a user from a group.

Returns
true, if user was removed from group, false otherwise.
Parameters
usernamename of user to be removed.
groupNamename of group user is to be removed from.

◆ RemoveUserFromSubAdminGroup()

bool owncloudsharp.Client.RemoveUserFromSubAdminGroup ( string  username,
string  groupName 
)

Removes the user from sub admin group.

Returns
true, if user from sub admin group was removed, false otherwise.
Parameters
usernameUsername.
groupNameGroup name.

◆ SearchGroups()

List<string> owncloudsharp.Client.SearchGroups ( string  name)

Searches for groups via provisioning API.

Returns
list of groups.
Parameters
namename of group to be searched for.

◆ SearchUsers()

List<string> owncloudsharp.Client.SearchUsers ( string  username)

Searches for users via provisioning API.

Returns
list of users.
Parameters
usernamename of user to be searched for.

◆ SetAttribute()

bool owncloudsharp.Client.SetAttribute ( string  app,
string  key,
string  value 
)

Sets an application attribute.

Returns
true, if attribute was set, false otherwise.
Parameters
appapplication id.
keykey of the attribute to set.
valuevalue to set.

◆ SetUserAttribute()

bool owncloudsharp.Client.SetUserAttribute ( string  username,
OCSUserAttributeKey  key,
string  value 
)

Sets a user attribute. See https://doc.owncloud.com/server/7.0EE/admin_manual/configuration_auth_backends/user_provisioning_api.html#users-edituser for reference.

Returns
true, if user attribute was set, false otherwise.
Parameters
usernamename of user to modify.
keykey of the attribute to set.
valuevalue to set.

◆ ShareWithGroup()

GroupShare owncloudsharp.Client.ShareWithGroup ( string  path,
string  groupName,
int  perms = -1 
)

Shares a remote file with specified group.

Returns
instance of GroupShare with the share info.
Parameters
pathpath to the remote file to share.
groupNamename of the group whom we want to share a file/folder.
permspermissions of the shared object.

◆ ShareWithLink()

PublicShare owncloudsharp.Client.ShareWithLink ( string  path,
int  perms = -1,
string  password = null,
OcsBoolParam  public_upload = OcsBoolParam.None 
)

Shares a remote file with link.

Returns
instance of PublicShare with the share info.
Parameters
pathpath to the remote file to share.
perms(optional) permission of the shared object.
password(optional) sets a password.
public_upload(optional) allows users to upload files or folders.

◆ ShareWithUser()

UserShare owncloudsharp.Client.ShareWithUser ( string  path,
string  username,
int  perms = -1,
OcsBoolParam  remoteUser = OcsBoolParam.None 
)

Shares a remote file with specified user.

Returns
instance of UserShare with the share info.
Parameters
pathpath to the remote file to share.
usernamename of the user whom we want to share a file/folder.
permspermissions of the shared object.
remoteUserRemote user.

◆ UpdateShare()

bool owncloudsharp.Client.UpdateShare ( int  shareId,
int  perms = -1,
string  password = null,
OcsBoolParam  public_upload = OcsBoolParam.None 
)

Updates a given share. NOTE: Only one of the update parameters can be specified at once.

Returns
true, if share was updated, false otherwise.
Parameters
shareIdShare identifier.
perms(optional) update permissions.
password(optional) updated password for public link Share.
public_upload(optional) If set to true enables public upload for public shares.

◆ Upload()

bool owncloudsharp.Client.Upload ( string  path,
Stream  data,
string  contentType 
)

Upload the specified file to the specified path.

Parameters
pathremote Path.
dataFile contents.
contentTypeFile content type.
Returns
true, if upload successful, false otherwise.

◆ UserExists()

bool owncloudsharp.Client.UserExists ( string  username)

Checks a user via provisioning API.

Returns
true, if exists was usered, false otherwise.
Parameters
usernamename of user to be checked.

Member Data Documentation

◆ OCSUserAttributeKeyName

string [] owncloudsharp.Client.OCSUserAttributeKeyName
static
Initial value:
= new string[] {
"display",
"quota",
"password",
"email"
}

Provides the string values for the OCSUserAttributeKey enum


The documentation for this class was generated from the following file: