harbour-nextcloudnotes/qml/components/NotesApi.qml

185 lines
5.8 KiB
QML
Raw Normal View History

2018-11-26 19:21:02 +03:00
import QtQuick 2.5
2018-10-16 18:50:58 +03:00
import Sailfish.Silica 1.0
import Nemo.Configuration 1.0
2018-10-16 18:50:58 +03:00
Item {
property string uuid
2019-01-26 20:09:28 +03:00
property string response
property var categories: [ ]
property string file: StandardPaths.data + "/" + uuid + ".json"
property bool saveFile: false
2018-12-22 10:03:15 +03:00
property bool busy: jobsRunning > 0
property int jobsRunning: 0
property int status: 0 //204
property string statusText: "No Content"
2018-11-25 16:07:37 +03:00
onStatusChanged: {
console.log("Network status: " + statusText + " (" + status + ")")
}
2018-12-07 02:30:18 +03:00
onUuidChanged: {
appSettings.currentAccount = uuid
2018-12-07 02:30:18 +03:00
account.path = "/apps/harbour-nextcloudnotes/accounts/" + uuid
onUuidChanged: console.log("Account : " + account.name)
2018-12-07 02:30:18 +03:00
}
2019-02-01 21:17:07 +03:00
/*function clear() {
account.clear()
2019-02-01 21:17:07 +03:00
}*/
function apiCall(method, data) {
2018-12-22 10:03:15 +03:00
jobsRunning++
2018-12-27 22:38:14 +03:00
var endpoint = account.server + "/index.php/apps/notes/api/" + account.version + "/notes"
if (data) {
if (method === "POST" || method === "PUT") {
console.log("Adding note...")
}
else if (data.id && method === "DELETE") {
console.log("Deleting note...")
}
if (method === "GET" || method === "PUT" || method === "DELETE") {
if (data.id) {
endpoint = endpoint + "/" + data.id
}
2018-11-18 13:25:28 +03:00
}
}
2018-12-07 02:30:18 +03:00
console.log("Calling " + endpoint)
var apiReq = new XMLHttpRequest
apiReq.open(method, endpoint, true)
apiReq.setRequestHeader('User-Agent', 'SailfishOS/harbour-nextcloudnotes')
apiReq.setRequestHeader('OCS-APIRequest', 'true')
apiReq.setRequestHeader("Content-Type", "application/json")
2018-12-27 22:38:14 +03:00
apiReq.setRequestHeader("Authorization", "Basic " + Qt.btoa(account.username + ":" + account.password))
apiReq.withCredentials = true
apiReq.timeout = 5000
apiReq.onreadystatechange = function() {
if (apiReq.readyState === XMLHttpRequest.DONE) {
statusText = apiReq.statusText
status = apiReq.status
if (apiReq.status === 200) {
2019-01-26 20:09:28 +03:00
response = apiReq.responseText
2019-02-24 18:40:47 +03:00
//console.log(response)
}
else if(apiReq.status === 0) {
statusText = qsTr("Unable to connect")
}
/*
else if (apiReq.status === 304) {
console.log("ETag does not differ!")
}
else if (apiReq.status === 401) {
console.log("Unauthorized!")
}
else if (apiReq.status === 404) {
console.log("Note does not exist!")
2018-10-23 23:15:59 +03:00
}*/
else {
2018-11-25 16:07:37 +03:00
//console.log("Network error: " + apiReq.statusText + " (" + apiReq.status + ")")
}
2018-12-22 10:03:15 +03:00
jobsRunning--
}
}
if (method === "GET") {
apiReq.send()
}
else if (method === "POST" || method === "PUT" || method === "DELETE") {
apiReq.send(JSON.stringify(data))
}
else {
console.log("Unsupported method: " + method)
apiReq.abort()
}
}
function getNote(id) {
var dict
if (id) {
for (var i = 0; i < model.count; i++) {
dict = model.get(i)
if (dict.id === id) {
return dict
}
}
}
}
function getNotesFromApi() {
apiCall("GET")
}
function getNoteFromApi(id) {
if (id) {
apiCall("GET", { 'id': id } )
}
}
function createNote(data) {
if (data)
apiCall("POST", data)
}
function updateNote(id, data) {
if (id && data) {
data.id = id
apiCall("PUT", data)
}
}
function deleteNote(id) {
if (id)
apiCall("DELETE", { 'id': id } )
2018-11-26 19:21:02 +03:00
}
// source: https://stackoverflow.com/a/14339782
function getPrettyDate(date) {
var today = new Date()
today.setHours(0)
today.setMinutes(0)
today.setSeconds(0)
today.setMilliseconds(0)
var compDate = new Date(date*1000)
compDate.setHours(0)
compDate.setMinutes(0)
compDate.setSeconds(0)
compDate.setMilliseconds(0)
if (compDate.getTime() === today.getTime()) {
return qsTr("Today")
} else if ((today.getTime() - compDate.getTime()) === (24 * 60 * 60 * 1000)) {
return qsTr("Yesterday")
} else if ((today.getTime() - compDate.getTime()) <= (7 * 24 * 60 * 60 * 1000)) {
return compDate.toLocaleDateString(Qt.locale(), "dddd")
} else if (today.getFullYear() === compDate.getFullYear()) {
return compDate.toLocaleDateString(Qt.locale(), "MMMM")
} else {
return compDate.toLocaleDateString(Qt.locale(), "MMMM yyyy")
}
}
/*Component.onCompleted: {
2018-10-16 18:50:58 +03:00
if (saveFile) {
if (account.name === "") {
2018-10-16 18:50:58 +03:00
saveFile = false
}
else {
busy = true
var fileReq = new XMLHttpRequest
fileReq.open("GET", file)
fileReq.onreadystatechange = function() {
if (fileReq.readyState === XMLHttpRequest.DONE) {
if (fileReq.responseText === "") {
update()
}
else {
console.log("Loaded " + account.name + " from local JSON file")
2018-10-16 18:50:58 +03:00
json = fileReq.responseText
busy = false
}
}
}
fileReq.send()
}
}
}*/
2018-10-16 18:50:58 +03:00
}