Giter VIP home page Giter VIP logo

ncdeck's Introduction

Nextcloud Deck API

Go Report Card

A Go package to interact with Nextcloud Deck REST API for Nextcloud Deck

this project is still in progress, please use with caution!

Installation

go get github.com/DasMetaphysischeparadoxon/ncdeck

Example

package main

import (
	"fmt"

	"github.com/DasMetaphysischeparadoxon/ncdeck"
)

func main() {

	deck := ncdeck.NewClient("MyUser", "MyPassword", "https://my.nextcloud.com")

	fmt.Println("[*] get boards")
	boards, err := deck.GetBoards()
	if err != nil {
		fmt.Println("Can't get boards:", err)
	}

	for _, board := range boards {
		fmt.Printf("\t- %v\n", board.Title)
	}

	fmt.Println("[*] create board")
	board, err := deck.CreateBoard("MyBoard", "0099cc")
	if err != nil {
		fmt.Println("Can't create board:", err)
	}

	fmt.Println("[*] create stack")
	stack, err := board.CreateStack("TODO", 1)
	if err != nil {
		fmt.Println("Can't create stack:", err)
	}

	fmt.Println("[*] create card")
	card, err := stack.CreateCard("My Title", "My Description", 1, "")
	if err != nil {
		fmt.Println("Can't create card:", err)
	}

	fmt.Println("[*] update card")
	card.Title = "New Title"
	err = card.Update()
	if err != nil {
		fmt.Println("Can't update card:", err)
	}
}

For more examples please look into the test file cmd/test_client/main.go.

Documentation

Please use go doc like:

go doc ncdeck.client

ncdeck's People

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.