Kgapi

personlocale.cpp
1/*
2 * SPDX-FileCopyrightText: 2021 Daniel Vrátil <dvratil@kde.org>
3 * SPDX-FileCopyrightText: 2022 Claudio Cambra <claudio.cambra@kde.org>
4 *
5 * SPDX-License-Identifier: LGPL-2.1-only
6 * SPDX-License-Identifier: LGPL-3.0-only
7 * SPDX-License-Identifier: LicenseRef-KDE-Accepted-LGPL
8 */
9
10#include "personlocale.h"
11
12#include "fieldmetadata.h"
13#include "peopleservice.h"
14
15#include <QJsonArray>
16#include <QJsonObject>
17#include <QJsonValue>
18#include <QSharedData>
19
20#include <algorithm>
21
22namespace KGAPI2::People
23{
24class PersonLocale::Private : public QSharedData
25{
26public:
27 explicit Private() = default;
28 Private(const Private &) = default;
29 Private(Private &&) noexcept = delete;
30 Private &operator=(const Private &) = delete;
31 Private &operator=(Private &&) noexcept = delete;
32 ~Private() = default;
33
34 bool operator==(const Private &other) const
35 {
36 return metadata == other.metadata && value == other.value;
37 }
38
39 bool operator!=(const Private &other) const
40 {
41 return !(*this == other);
42 }
43
44 FieldMetadata metadata{};
45 QString value{};
46};
47
49 : d(new Private)
50{
51}
52
54PersonLocale::PersonLocale(PersonLocale &&) noexcept = default;
55PersonLocale &PersonLocale::operator=(const PersonLocale &) = default;
56PersonLocale &PersonLocale::operator=(PersonLocale &&) noexcept = default;
57PersonLocale::~PersonLocale() = default;
58
59bool PersonLocale::operator==(const PersonLocale &other) const
60{
61 return *d == *other.d;
62}
63
64bool PersonLocale::operator!=(const PersonLocale &other) const
65{
66 return !(*this == other);
67}
68
70{
71 return d->metadata;
72}
73
75{
76 d->metadata = value;
77}
79{
80 return d->value;
81}
82
84{
85 d->value = value;
86}
87
88PersonLocale PersonLocale::fromJSON(const QJsonObject &obj)
89{
90 PersonLocale locale;
91
92 if(!obj.isEmpty()) {
93 const auto metadata = obj.value(QStringLiteral("metadata")).toObject();
94 locale.setMetadata(FieldMetadata::fromJSON(metadata));
95 locale.setValue(obj.value(QStringLiteral("value")).toString());
96 }
97
98 return locale;
99}
100
101QList<PersonLocale> PersonLocale::fromJSONArray(const QJsonArray &data)
102{
103 QList<PersonLocale> locales;
104
105 for (const auto &locale : data) {
106 if(locale.isObject()) {
107 const auto objectifiedLocale = locale.toObject();
108 locales.append(fromJSON(objectifiedLocale));
109 }
110 }
111
112 return locales;
113}
114
115QJsonValue PersonLocale::toJSON() const
116{
117 QJsonObject obj;
118
119 // Skip, field metadata is only useful for receiving -> PeopleUtils::addValueToJsonObjectIfValid(obj, "metadata", d->metadata.toJSON());
120 PeopleUtils::addValueToJsonObjectIfValid(obj, "value", d->value);
121 return obj;
122}
123
124} // namespace KGAPI2::People
Metadata about a field.
A person's locale preference.
void setMetadata(const FieldMetadata &value)
Sets value of the metadata property.
QString value() const
The well-formed IETF BCP 47 language tag representing the locale.
void setValue(const QString &value)
Sets value of the value property.
FieldMetadata metadata() const
Metadata about the locale.
PersonLocale()
Constructs a new PersonLocale.
bool isEmpty() const const
QJsonValue value(QLatin1StringView key) const const
QJsonObject toObject() const const
void append(QList< T > &&value)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:50:41 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.