Returns all content in a Confluence instance. By default, the following objects are expanded: space, history, version.
package main
import (
"context"
"github.com/ctreminiom/go-atlassian/confluence"
"log"
"os"
)
func main() {
var (
host = os.Getenv("HOST")
mail = os.Getenv("MAIL")
token = os.Getenv("TOKEN")
)
instance, err := confluence.New(nil, host)
if err != nil {
log.Fatal(err)
}
instance.Auth.SetBasicAuth(mail, token)
instance.Auth.SetUserAgent("curl/7.54.0")
var (
contentID = "64290828"
expand = []string{"any"}
version = 1
)
content, response, err := instance.Content.Get(context.Background(), contentID, expand, version)
if err != nil {
if response != nil {
log.Println(response.Code)
}
log.Fatal(err)
}
log.Println("Endpoint:", response.Endpoint)
log.Println("Status Code:", response.Code)
log.Println(content)
}
Create content
POST /wiki/rest/api/content
Creates a new piece of content or publishes an existing draft. To publish a draft, add the id and status properties to the body of the request.
Set the id to the ID of the draft and set the status to 'current'.
When the request is sent, a new piece of content will be created and the metadata from the draft will be transferred into it.
By default, the following objects are expanded: space, history, version.
package main
import (
"context"
"github.com/ctreminiom/go-atlassian/confluence"
"github.com/ctreminiom/go-atlassian/pkg/infra/models"
"log"
"os"
)
func main() {
var (
host = os.Getenv("HOST")
mail = os.Getenv("MAIL")
token = os.Getenv("TOKEN")
)
instance, err := confluence.New(nil, host)
if err != nil {
log.Fatal(err)
}
instance.Auth.SetBasicAuth(mail, token)
instance.Auth.SetUserAgent("curl/7.54.0")
var payload = &models.ContentScheme{
Type: "page", // Valid values: page, blogpost, comment
Title: "Confluence Page Title",
Space: &models.SpaceScheme{Key: "DUMMY"},
Body: &models.BodyScheme{
Storage: &models.BodyNodeScheme{
Value: "<p>This is <br/> a new page</p>",
Representation: "storage",
},
},
Ancestors: []*models.ContentScheme{
{
ID: "78643265",
},
},
}
newConfluence, response, err := instance.Content.Create(context.Background(), payload)
if err != nil {
if response != nil {
log.Fatal(response.Code)
}
log.Fatal(err)
}
log.Println("Endpoint:", response.Endpoint)
log.Println("Status Code:", response.Code)
log.Println("The new content has been created")
log.Println(newConfluence.ID)
log.Println(newConfluence.Links.Self)
log.Println(newConfluence.Title)
log.Println(newConfluence.Space.Name)
}
Get content by ID
GET /wiki/rest/api/content/{id}
Returns a single piece of content, like a page or a blog post. By default, the following objects are expanded: space, history, version.
package main
import (
"context"
"github.com/ctreminiom/go-atlassian/confluence"
"log"
"os"
)
func main() {
var (
host = os.Getenv("HOST")
mail = os.Getenv("MAIL")
token = os.Getenv("TOKEN")
)
instance, err := confluence.New(nil, host)
if err != nil {
log.Fatal(err)
}
instance.Auth.SetBasicAuth(mail, token)
instance.Auth.SetUserAgent("curl/7.54.0")
var (
contentID = "64290828"
expand = []string{"any"}
version = 1
)
content, response, err := instance.Content.Get(context.Background(), contentID, expand, version)
if err != nil {
if response != nil {
log.Println(response.Code)
}
log.Fatal(err)
}
log.Println("Endpoint:", response.Endpoint)
log.Println("Status Code:", response.Code)
log.Println(content)
}
Update content
PUT /wiki/rest/api/content/{id}
Updates a piece of content. Use this method to update the title or body of a piece of content, change the status, change the parent page, and more.
package main
import (
"context"
"github.com/ctreminiom/go-atlassian/confluence"
"github.com/ctreminiom/go-atlassian/pkg/infra/models"
"log"
"os"
)
func main() {
var (
host = os.Getenv("HOST")
mail = os.Getenv("MAIL")
token = os.Getenv("TOKEN")
)
instance, err := confluence.New(nil, host)
if err != nil {
log.Fatal(err)
}
instance.Auth.SetBasicAuth(mail, token)
instance.Auth.SetUserAgent("curl/7.54.0")
var payload = &models.ContentScheme{
Type: "page", // Valid values: page, blogpost, comment
Title: "Confluence Page Title - Updated",
Body: &models.BodyScheme{
Storage: &models.BodyNodeScheme{
Value: "<p>This is <br/> a new page - updated</p>",
Representation: "storage",
},
},
Version: &models.ContentVersionScheme{Number: 2},
}
content, response, err := instance.Content.Update(context.Background(), "64290828", payload)
if err != nil {
if response != nil {
log.Println(response.Code)
}
log.Fatal(err)
}
log.Println("Endpoint:", response.Endpoint)
log.Println("Status Code:", response.Code)
log.Println(content)
}
Delete content
DELETE /wiki/rest/api/content/{id}
Moves a piece of content to the space's trash or purges it from the trash, depending on the content's type and status:
If the content's type is page or blogpost and its status is current, it will be trashed.
If the content's type is page or blogpost and its status is trashed, the content will be purged from the trash and deleted permanently. Note, you must also set the status query parameter to trashed in your request.
If the content's type is comment or attachment, it will be deleted permanently without being trashed.
package main
import (
"context"
"github.com/ctreminiom/go-atlassian/confluence"
"log"
"os"
)
func main() {
var (
host = os.Getenv("HOST")
mail = os.Getenv("MAIL")
token = os.Getenv("TOKEN")
)
instance, err := confluence.New(nil, host)
if err != nil {
log.Fatal(err)
}
instance.Auth.SetBasicAuth(mail, token)
instance.Auth.SetUserAgent("curl/7.54.0")
var contentID = "74219528"
response, err := instance.Content.Delete(context.Background(), contentID, "")
if err != nil {
if response != nil {
log.Println(response.Code)
}
log.Fatal(err)
}
log.Println(response)
}
Get content history
GET /wiki/rest/api/content/{id}/history
Returns the most recent update for a piece of content.
Archives a list of pages. The pages to be archived are specified as a list of content IDs. This API accepts the archival request and returns a task ID.
The archival process happens asynchronously. Use the /longtask/ REST API to get the copy task status.