mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2025-06-25 09:52:26 +00:00
Nextcloud API Client, Uers/Response types, User list/search/get/create/delete
This commit is contained in:
94
client/types/capabilities.go
Normal file
94
client/types/capabilities.go
Normal file
@ -0,0 +1,94 @@
|
||||
package types
|
||||
|
||||
type Capabilities struct {
|
||||
Core struct {
|
||||
Pollinterval int `json:"pollinterval"`
|
||||
WebdavRoot string `json:"webdav-root"`
|
||||
} `json:"core"`
|
||||
Bruteforce struct {
|
||||
Delay int `json:"delay"`
|
||||
} `json:"bruteforce"`
|
||||
Activity struct {
|
||||
Apiv2 []string `json:"apiv2"`
|
||||
} `json:"activity"`
|
||||
Dav struct {
|
||||
Chunking string `json:"chunking"`
|
||||
} `json:"dav"`
|
||||
FilesSharing struct {
|
||||
APIEnabled bool `json:"api_enabled"`
|
||||
Public struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
Password struct {
|
||||
Enforced bool `json:"enforced"`
|
||||
} `json:"password"`
|
||||
ExpireDate struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
} `json:"expire_date"`
|
||||
SendMail bool `json:"send_mail"`
|
||||
Upload bool `json:"upload"`
|
||||
UploadFilesDrop bool `json:"upload_files_drop"`
|
||||
} `json:"public"`
|
||||
Resharing bool `json:"resharing"`
|
||||
User struct {
|
||||
SendMail bool `json:"send_mail"`
|
||||
ExpireDate struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
} `json:"expire_date"`
|
||||
} `json:"user"`
|
||||
GroupSharing bool `json:"group_sharing"`
|
||||
Group struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
ExpireDate struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
} `json:"expire_date"`
|
||||
} `json:"group"`
|
||||
Federation struct {
|
||||
Outgoing bool `json:"outgoing"`
|
||||
Incoming bool `json:"incoming"`
|
||||
ExpireDate struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
} `json:"expire_date"`
|
||||
} `json:"federation"`
|
||||
Sharebymail struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
UploadFilesDrop struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
} `json:"upload_files_drop"`
|
||||
Password struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
} `json:"password"`
|
||||
ExpireDate struct {
|
||||
Enabled bool `json:"enabled"`
|
||||
} `json:"expire_date"`
|
||||
} `json:"sharebymail"`
|
||||
} `json:"files_sharing"`
|
||||
Notifications struct {
|
||||
OcsEndpoints []string `json:"ocs-endpoints"`
|
||||
Push []string `json:"push"`
|
||||
} `json:"notifications"`
|
||||
PasswordPolicy struct {
|
||||
MinLength int `json:"minLength"`
|
||||
EnforceNonCommonPassword bool `json:"enforceNonCommonPassword"`
|
||||
EnforceNumericCharacters bool `json:"enforceNumericCharacters"`
|
||||
EnforceSpecialCharacters bool `json:"enforceSpecialCharacters"`
|
||||
EnforceUpperLowerCase bool `json:"enforceUpperLowerCase"`
|
||||
} `json:"password_policy"`
|
||||
Theming struct {
|
||||
Name string `json:"name"`
|
||||
URL string `json:"url"`
|
||||
Slogan string `json:"slogan"`
|
||||
Color string `json:"color"`
|
||||
ColorText string `json:"color-text"`
|
||||
ColorElement string `json:"color-element"`
|
||||
Logo string `json:"logo"`
|
||||
Background string `json:"background"`
|
||||
BackgroundPlain bool `json:"background-plain"`
|
||||
BackgroundDefault bool `json:"background-default"`
|
||||
} `json:"theming"`
|
||||
Files struct {
|
||||
Bigfilechunking bool `json:"bigfilechunking"`
|
||||
BlacklistedFiles []string `json:"blacklisted_files"`
|
||||
Undelete bool `json:"undelete"`
|
||||
Versioning bool `json:"versioning"`
|
||||
} `json:"files"`
|
||||
}
|
79
client/types/responses.go
Normal file
79
client/types/responses.go
Normal file
@ -0,0 +1,79 @@
|
||||
package types
|
||||
|
||||
type ErrorResponse struct {
|
||||
Ocs struct {
|
||||
Meta struct {
|
||||
Status string `json:"status"`
|
||||
Statuscode int `json:"statuscode"`
|
||||
Message string `json:"message"`
|
||||
Totalitems string `json:"totalitems"`
|
||||
Itemsperpage string `json:"itemsperpage"`
|
||||
} `json:"meta"`
|
||||
Data []interface{} `json:"data"`
|
||||
} `json:"ocs"`
|
||||
}
|
||||
|
||||
type UserListResponse struct {
|
||||
Ocs struct {
|
||||
Meta struct {
|
||||
Status string `json:"status"`
|
||||
Statuscode int `json:"statuscode"`
|
||||
Message string `json:"message"`
|
||||
Totalitems string `json:"totalitems"`
|
||||
Itemsperpage string `json:"itemsperpage"`
|
||||
} `json:"meta"`
|
||||
Data struct {
|
||||
Users []string `json:"users"`
|
||||
} `json:"data"`
|
||||
} `json:"ocs"`
|
||||
}
|
||||
|
||||
type UserResponse struct {
|
||||
Ocs struct {
|
||||
Meta struct {
|
||||
Status string `json:"status"`
|
||||
Statuscode int `json:"statuscode"`
|
||||
Message string `json:"message"`
|
||||
Totalitems string `json:"totalitems"`
|
||||
Itemsperpage string `json:"itemsperpage"`
|
||||
} `json:"meta"`
|
||||
Data User `json:"data"`
|
||||
} `json:"ocs"`
|
||||
}
|
||||
|
||||
type GroupListResponse struct {
|
||||
Ocs struct {
|
||||
Meta struct {
|
||||
Status string `json:"status"`
|
||||
Statuscode int `json:"statuscode"`
|
||||
Message string `json:"message"`
|
||||
Totalitems string `json:"totalitems"`
|
||||
Itemsperpage string `json:"itemsperpage"`
|
||||
} `json:"meta"`
|
||||
Data struct {
|
||||
Groups []string `json:"groups"`
|
||||
} `json:"data"`
|
||||
} `json:"ocs"`
|
||||
}
|
||||
|
||||
type CapabilitiesResponse struct {
|
||||
Ocs struct {
|
||||
Meta struct {
|
||||
Status string `json:"status"`
|
||||
Statuscode int `json:"statuscode"`
|
||||
Message string `json:"message"`
|
||||
Totalitems string `json:"totalitems"`
|
||||
Itemsperpage string `json:"itemsperpage"`
|
||||
} `json:"meta"`
|
||||
Data struct {
|
||||
Version struct {
|
||||
Major int `json:"major"`
|
||||
Minor int `json:"minor"`
|
||||
Micro int `json:"micro"`
|
||||
String string `json:"string"`
|
||||
Edition string `json:"edition"`
|
||||
} `json:"version"`
|
||||
Capabilities Capabilities `json:"capabilities"`
|
||||
} `json:"data"`
|
||||
} `json:"ocs"`
|
||||
}
|
21
client/types/user.go
Normal file
21
client/types/user.go
Normal file
@ -0,0 +1,21 @@
|
||||
package types
|
||||
|
||||
type User struct {
|
||||
Enabled string `json:"enabled"`
|
||||
ID string `json:"id"`
|
||||
Quota struct {
|
||||
Free int64 `json:"free"`
|
||||
Used int `json:"used"`
|
||||
Total int64 `json:"total"`
|
||||
Relative float64 `json:"relative"`
|
||||
Quota int `json:"quota"`
|
||||
} `json:"quota"`
|
||||
Email string `json:"email"`
|
||||
Displayname string `json:"displayname"`
|
||||
Phone string `json:"phone"`
|
||||
Address string `json:"address"`
|
||||
Website string `json:"website"`
|
||||
Twitter string `json:"twitter"`
|
||||
Groups []string `json:"groups"`
|
||||
Language string `json:"language"`
|
||||
}
|
Reference in New Issue
Block a user