harbour-nextcloudnotes/qml/pages/NotesApi.qml

282 lines
9.2 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
property string name
property url server
property url url
property string version: "v0.2"
property string username
property string password
property date update
property bool unsecureConnection
property bool unencryptedConnection
property var modelData: [ ]
property var model: ListModel { }
2018-11-18 13:25:28 +03:00
//property string file: StandardPaths.data + "/" + uuid + ".json"
//property bool saveFile: false
2018-10-16 18:50:58 +03:00
property bool busy: false
property int status: 204
property string statusText: "No Content"
2018-11-25 16:07:37 +03:00
onStatusChanged: {
console.log("Network status: " + statusText + " (" + status + ")")
}
2018-10-16 18:50:58 +03:00
Connections {
target: appSettings
2018-11-26 19:21:02 +03:00
onSortByChanged: mapDataToModel()
}
ConfigurationGroup {
id: account
path: "/apps/harbour-nextcloudnotes/accounts/" + uuid
}
Component.onCompleted: {
name = account.value("name", "", String)
server = account.value("server", "", String)
url = server + "/index.php/apps/notes/api/" + version + "/notes"
username = account.value("username", "", String)
password = account.value("password", "", String)
update = account.value("update", "", Date)
unsecureConnection = account.value("unsecureConnection", false, Boolean)
unencryptedConnection = account.value("unencryptedConnection", false, Boolean)
}
onUuidChanged: account.setValue("uuid", uuid)
onNameChanged: account.setValue("name", name)
onServerChanged: account.setValue("server", server)
onUsernameChanged: account.setValue("username", username)
onPasswordChanged: account.setValue("password", password)
onUpdateChanged: account.setValue("update", update)
onUnsecureConnectionChanged: account.setValue("unsecureConnection", unsecureConnection)
onUnencryptedConnectionChanged: account.setValue("unencryptedConnection", unencryptedConnection)
function clear() {
2018-11-18 13:25:28 +03:00
model.clear()
account.clear()
}
function callApi(method, data) {
busy = true
var endpoint = url
2018-11-18 13:25:28 +03:00
if (data && (method === "GET" || method === "PUT" || method === "DELETE")) {
if (data.id) {
endpoint = endpoint + "/" + data.id
2018-11-18 13:25:28 +03:00
}
}
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")
apiReq.setRequestHeader("Authorization", "Basic " + Qt.btoa(username + ":" + password))
apiReq.onreadystatechange = function() {
if (apiReq.readyState === XMLHttpRequest.DONE) {
if (apiReq.status === 200) {
2018-11-18 13:25:28 +03:00
2018-11-25 16:07:37 +03:00
var json = JSON.parse(apiReq.responseText)
2018-11-18 13:25:28 +03:00
switch(method) {
case "GET":
if (Array.isArray(json)) {
console.log("Received all notes via API: " + endpoint)
modelData = json
2018-11-26 19:21:02 +03:00
mapDataToModel()
2018-11-18 13:25:28 +03:00
update = new Date()
}
else {
console.log("Received a single note via API: " + endpoint)
addToModelData(json)
2018-11-18 13:25:28 +03:00
}
break;
case "POST":
console.log("Created a note via API: " + endpoint)
addToModelData(json)
2018-11-18 13:25:28 +03:00
break;
case "PUT":
console.log("Updated a note via API: " + endpoint)
addToModelData(json)
2018-11-18 13:25:28 +03:00
break;
case "DELETE":
console.log("Deleted a note via API: " + endpoint)
2018-11-26 19:21:02 +03:00
removeFromModelData(data.id)
2018-11-18 13:25:28 +03:00
break;
default:
console.log("Unsupported method: " + method)
break;
}
2018-10-23 23:15:59 +03:00
}/*
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 + ")")
}
statusText = apiReq.statusText
2018-11-25 16:07:37 +03:00
status = apiReq.status
busy = false
}
}
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 getNotes() {
callApi("GET")
}
function getNote(id) {
if (id)
callApi("GET", { 'id': id } )
}
function createNote(data) {
callApi("POST", data)
}
function updateNote(id, data) {
if (id) {
data.id = id
callApi("PUT", data)
}
}
function deleteNote(id) {
if (id)
callApi("DELETE", { 'id': id } )
}
function addToModelData(data) {
for (var i = 0; i < modelData.length; i++) {
if (modelData[i].id === data.id) {
modelData[i] = data
break
}
}
if (i === modelData.length) {
modelData.push(data)
}
2018-11-26 19:21:02 +03:00
mapDataToModel()
}
function removeFromModelData(id) {
for (var i = 0; i < modelData.length; i++) {
if (modelData[i].id === id) {
modelData.splice(i, 1)
break
}
}
mapDataToModel()
}
2018-11-26 19:21:02 +03:00
function mapDataToModel() {
modelData.forEach(function(value) { value.date = getPrettyDate(value.modified) } )
switch(appSettings.sortBy) {
case "date":
modelData.sort(function(a, b) { return b.modified-a.modified } )
break
case "category":
modelData.sort(function(a, b) { return ((a.category > b.category) ? 1 : ((b.category > a.category) ? -1 : 0)) } )
break
case "title":
modelData.sort(function(a, b) { return ((a.title > b.title) ? 1 : ((b.title > a.title) ? -1 : 0)) } )
break
}
2018-11-26 19:21:02 +03:00
for (var element in modelData) {
model.set(element, modelData[element])
//model.setProperty(element, "date", getPrettyDate(modelData[element].modified))
}
element++
while (model.count > element) {
model.remove(element)
}
}
2018-10-16 18:50:58 +03:00
function refresh() {
search("")
}
function search(query) {
model.clear()
2018-10-16 18:50:58 +03:00
var elements = parseJson()
for (var element in elements) {
elements[element].section = ""
var match = false
for (var child in elements[element]) {
if (elements[element][child]) {
match = (elements[element][child].toString().toLowerCase().indexOf(query) >= 0) || match
}
}
if (query === "" || match)
model.append(elements[element])
2018-10-16 18:50:58 +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 {
return compDate.toLocaleDateString(Qt.locale(), Locale.ShortFormat)
}
}
/*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
}