1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <sfx2/classificationhelper.hxx>
#include <map>
#include <algorithm>
#include <com/sun/star/beans/XPropertyContainer.hpp>
#include <com/sun/star/document/XDocumentProperties.hpp>
#include <com/sun/star/xml/sax/Parser.hpp>
#include <com/sun/star/xml/sax/XDocumentHandler.hpp>
#include <com/sun/star/xml/sax/SAXParseException.hpp>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <sfx2/objsh.hxx>
#include <o3tl/make_unique.hxx>
#include <comphelper/processfactory.hxx>
#include <unotools/pathoptions.hxx>
#include <unotools/ucbstreamhelper.hxx>
#include <unotools/streamwrap.hxx>
#include <cppuhelper/implbase.hxx>
#include <sfx2/sfx.hrc>
#include <sfx2/sfxresid.hxx>
#include <sfx2/viewfrm.hxx>
#include <officecfg/Office/Common.hxx>
#include <config_folders.h>
using namespace com::sun::star;
namespace
{
/// Represents one category of a classification policy.
class SfxClassificationCategory
{
public:
/// PROP_BACNAME() is stored separately for easier lookup.
OUString m_aName;
std::map<OUString, OUString> m_aLabels;
};
/// Parses a policy XML conforming to the TSCP BAF schema.
class SfxClassificationParser : public cppu::WeakImplHelper<xml::sax::XDocumentHandler>
{
public:
std::vector<SfxClassificationCategory> m_aCategories;
OUString m_aPolicyAuthorityName;
bool m_bInPolicyAuthorityName;
OUString m_aPolicyName;
bool m_bInPolicyName;
OUString m_aProgramID;
bool m_bInProgramID;
OUString m_aScale;
bool m_bInScale;
OUString m_aConfidentalityValue;
bool m_bInConfidentalityValue;
OUString m_aIdentifier;
bool m_bInIdentifier;
OUString m_aValue;
bool m_bInValue;
/// Pointer to a value in m_aCategories, the currently parsed category.
SfxClassificationCategory* m_pCategory;
SfxClassificationParser();
virtual ~SfxClassificationParser();
virtual void SAL_CALL startDocument() throw (xml::sax::SAXException, uno::RuntimeException, std::exception) override;
virtual void SAL_CALL endDocument() throw (xml::sax::SAXException, uno::RuntimeException, std::exception) override;
virtual void SAL_CALL startElement(const OUString& aName, const uno::Reference<xml::sax::XAttributeList>& xAttribs)
throw (xml::sax::SAXException, uno::RuntimeException, std::exception) override;
virtual void SAL_CALL endElement(const OUString& aName) throw (xml::sax::SAXException, uno::RuntimeException, std::exception) override;
virtual void SAL_CALL characters(const OUString& aChars) throw (xml::sax::SAXException, uno::RuntimeException, std::exception) override;
virtual void SAL_CALL ignorableWhitespace(const OUString& aWhitespaces) throw (xml::sax::SAXException, uno::RuntimeException, std::exception) override;
virtual void SAL_CALL processingInstruction(const OUString& aTarget, const OUString& aData) throw (xml::sax::SAXException, uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setDocumentLocator(const uno::Reference<xml::sax::XLocator>& xLocator)
throw (xml::sax::SAXException, uno::RuntimeException, std::exception) override;
};
SfxClassificationParser::SfxClassificationParser()
: m_bInPolicyAuthorityName(false)
, m_bInPolicyName(false)
, m_bInProgramID(false)
, m_bInScale(false)
, m_bInConfidentalityValue(false)
, m_bInIdentifier(false)
, m_bInValue(false)
, m_pCategory(nullptr)
{
}
SfxClassificationParser::~SfxClassificationParser()
{
}
void SAL_CALL SfxClassificationParser::startDocument() throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
{
}
void SAL_CALL SfxClassificationParser::endDocument() throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
{
}
void SAL_CALL SfxClassificationParser::startElement(const OUString& rName, const uno::Reference<xml::sax::XAttributeList>& xAttribs)
throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
{
if (rName == "baf:PolicyAuthorityName")
{
m_aPolicyAuthorityName.clear();
m_bInPolicyAuthorityName = true;
}
else if (rName == "baf:PolicyName")
{
m_aPolicyName.clear();
m_bInPolicyName = true;
}
else if (rName == "baf:ProgramID")
{
m_aProgramID.clear();
m_bInProgramID = true;
}
else if (rName == "baf:BusinessAuthorizationCategory")
{
OUString aName = xAttribs->getValueByName("Name");
if (!m_pCategory && !aName.isEmpty())
{
OUString aIdentifier = xAttribs->getValueByName("Identifier");
// Create a new category and initialize it with the data that's true for all categories.
m_aCategories.push_back(SfxClassificationCategory());
SfxClassificationCategory& rCategory = m_aCategories.back();
rCategory.m_aName = aName;
rCategory.m_aLabels["urn:bails:IntellectualProperty:PolicyAuthority:Name"] = m_aPolicyAuthorityName;
rCategory.m_aLabels["urn:bails:IntellectualProperty:Policy:Name"] = m_aPolicyName;
rCategory.m_aLabels["urn:bails:IntellectualProperty:BusinessAuthorization:Identifier"] = m_aProgramID;
rCategory.m_aLabels["urn:bails:IntellectualProperty:BusinessAuthorizationCategory:Identifier"] = aIdentifier;
// Also initialize defaults.
rCategory.m_aLabels["urn:bails:IntellectualProperty:PolicyAuthority:Identifier"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:PolicyAuthority:Country"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:Policy:Identifier"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:BusinessAuthorization:Name"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:BusinessAuthorization:Locator"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:BusinessAuthorizationCategory:Identifier:OID"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:BusinessAuthorizationCategory:Locator"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:BusinessAuthorization:Locator"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:MarkingPrecedence"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-summary"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-warning-statement"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-warning-statement:ext:2"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-warning-statement:ext:3"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-warning-statement:ext:4"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-distribution-statement"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-distribution-statement:ext:2"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-distribution-statement:ext:3"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:general-distribution-statement:ext:4"].clear();
rCategory.m_aLabels[SfxClassificationHelper::PROP_DOCHEADER()].clear();
rCategory.m_aLabels[SfxClassificationHelper::PROP_DOCFOOTER()].clear();
rCategory.m_aLabels[SfxClassificationHelper::PROP_DOCWATERMARK()].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:email-first-line-of-text"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:email-last-line-of-text"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:email-subject-prefix"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Marking:email-subject-suffix"].clear();
rCategory.m_aLabels["urn:bails:IntellectualProperty:Authorization:StartValidity"] = "None";
rCategory.m_aLabels["urn:bails:IntellectualProperty:Authorization:StopValidity"] = "None";
m_pCategory = &rCategory;
}
}
else if (rName == "baf:Scale")
{
m_aScale.clear();
m_bInScale = true;
}
else if (rName == "baf:ConfidentalityValue")
{
m_aConfidentalityValue.clear();
m_bInConfidentalityValue = true;
}
else if (rName == "baf:Identifier")
{
m_aIdentifier.clear();
m_bInIdentifier = true;
}
else if (rName == "baf:Value")
{
m_aValue.clear();
m_bInValue = true;
}
}
void SAL_CALL SfxClassificationParser::endElement(const OUString& rName) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
{
if (rName == "baf:PolicyAuthorityName")
m_bInPolicyAuthorityName = false;
else if (rName == "baf:PolicyName")
m_bInPolicyName = false;
else if (rName == "baf:ProgramID")
m_bInProgramID = false;
else if (rName == "baf:BusinessAuthorizationCategory")
m_pCategory = nullptr;
else if (rName == "baf:Scale")
{
m_bInScale = false;
if (m_pCategory)
m_pCategory->m_aLabels["urn:bails:IntellectualProperty:Impact:Scale"] = m_aScale;
}
else if (rName == "baf:ConfidentalityValue")
{
m_bInConfidentalityValue = false;
if (m_pCategory)
{
std::map<OUString, OUString>& rLabels = m_pCategory->m_aLabels;
rLabels["urn:bails:IntellectualProperty:Impact:Level:Confidentiality"] = m_aConfidentalityValue;
// Set the two other type of levels as well, if they're not set
// yet: they're optional in BAF, but not in BAILS.
if (rLabels.find("urn:bails:IntellectualProperty:Impact:Level:Integrity") == rLabels.end())
rLabels["urn:bails:IntellectualProperty:Impact:Level:Integrity"] = m_aConfidentalityValue;
if (rLabels.find("urn:bails:IntellectualProperty:Impact:Level:Availability") == rLabels.end())
rLabels["urn:bails:IntellectualProperty:Impact:Level:Availability"] = m_aConfidentalityValue;
}
}
else if (rName == "baf:Identifier")
m_bInIdentifier = false;
else if (rName == "baf:Value")
{
if (m_pCategory)
{
if (m_aIdentifier == "Document: Header")
m_pCategory->m_aLabels[SfxClassificationHelper::PROP_DOCHEADER()] = m_aValue;
else if (m_aIdentifier == "Document: Footer")
m_pCategory->m_aLabels[SfxClassificationHelper::PROP_DOCFOOTER()] = m_aValue;
else if (m_aIdentifier == "Document: Watermark")
m_pCategory->m_aLabels[SfxClassificationHelper::PROP_DOCWATERMARK()] = m_aValue;
}
}
}
void SAL_CALL SfxClassificationParser::characters(const OUString& rChars) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
{
if (m_bInPolicyAuthorityName)
m_aPolicyAuthorityName += rChars;
else if (m_bInPolicyName)
m_aPolicyName += rChars;
else if (m_bInProgramID)
m_aProgramID += rChars;
else if (m_bInScale)
m_aScale += rChars;
else if (m_bInConfidentalityValue)
m_aConfidentalityValue += rChars;
else if (m_bInIdentifier)
m_aIdentifier += rChars;
else if (m_bInValue)
m_aValue += rChars;
}
void SAL_CALL SfxClassificationParser::ignorableWhitespace(const OUString& /*rWhitespace*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
{
}
void SAL_CALL SfxClassificationParser::processingInstruction(const OUString& /*rTarget*/, const OUString& /*rData*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
{
}
void SAL_CALL SfxClassificationParser::setDocumentLocator(const uno::Reference<xml::sax::XLocator>& /*xLocator*/) throw (xml::sax::SAXException, uno::RuntimeException, std::exception)
{
}
const OUString& PROP_BACNAME()
{
static OUString sProp("urn:bails:IntellectualProperty:BusinessAuthorizationCategory:Name");
return sProp;
}
} // anonymous namespace
/// Implementation details of SfxClassificationHelper.
class SfxClassificationHelper::Impl
{
public:
SfxClassificationCategory m_aCategory;
/// Possible categories of a policy to choose from.
std::vector<SfxClassificationCategory> m_aCategories;
SfxObjectShell& m_rObjectShell;
Impl(SfxObjectShell& rObjectShell);
void parsePolicy();
/// Synchronize m_aLabels back to the object shell.
void pushToObjectShell();
};
SfxClassificationHelper::Impl::Impl(SfxObjectShell& rObjectShell)
: m_rObjectShell(rObjectShell)
{
}
void SfxClassificationHelper::Impl::parsePolicy()
{
uno::Reference<uno::XComponentContext> xComponentContext = comphelper::getProcessComponentContext();
SvtPathOptions aOptions;
OUString aPath = aOptions.GetClassificationPath();
SvStream* pStream = utl::UcbStreamHelper::CreateStream(aPath, StreamMode::READ);
uno::Reference<io::XInputStream> xInputStream(new utl::OStreamWrapper(*pStream));
xml::sax::InputSource aParserInput;
aParserInput.aInputStream = xInputStream;
uno::Reference<xml::sax::XParser> xParser = xml::sax::Parser::create(xComponentContext);
rtl::Reference<SfxClassificationParser> xClassificationParser(new SfxClassificationParser());
uno::Reference<xml::sax::XDocumentHandler> xHandler(xClassificationParser.get());
xParser->setDocumentHandler(xHandler);
try
{
xParser->parseStream(aParserInput);
}
catch (const xml::sax::SAXParseException& rException)
{
SAL_WARN("sfx.view", "parsePolicy() failed: " << rException.Message);
}
m_aCategories = xClassificationParser->m_aCategories;
}
bool lcl_containsProperty(const uno::Sequence<beans::Property>& rProperties, const OUString& rName)
{
return std::find_if(rProperties.begin(), rProperties.end(), [&](const beans::Property& rProperty)
{
return rProperty.Name == rName;
}) != rProperties.end();
}
void SfxClassificationHelper::Impl::pushToObjectShell()
{
uno::Reference<document::XDocumentProperties> xDocumentProperties = m_rObjectShell.getDocProperties();
uno::Reference<beans::XPropertyContainer> xPropertyContainer = xDocumentProperties->getUserDefinedProperties();
uno::Reference<beans::XPropertySet> xPropertySet(xPropertyContainer, uno::UNO_QUERY);
uno::Sequence<beans::Property> aProperties = xPropertySet->getPropertySetInfo()->getProperties();
std::map<OUString, OUString> aLabels = m_aCategory.m_aLabels;
aLabels[PROP_BACNAME()] = m_aCategory.m_aName;
for (const std::pair<OUString, OUString>& rLabel : aLabels)
{
try
{
if (lcl_containsProperty(aProperties, rLabel.first))
xPropertySet->setPropertyValue(rLabel.first, uno::makeAny(rLabel.second));
else
xPropertyContainer->addProperty(rLabel.first, beans::PropertyAttribute::REMOVABLE, uno::makeAny(rLabel.second));
}
catch (const uno::Exception& rException)
{
SAL_WARN("sfx.view", "pushToObjectShell() failed for property " << rLabel.first << ": " << rException.Message);
}
}
}
bool SfxClassificationHelper::IsClassified(SfxObjectShell& rObjectShell)
{
uno::Reference<document::XDocumentProperties> xDocumentProperties = rObjectShell.getDocProperties();
uno::Reference<beans::XPropertyContainer> xPropertyContainer = xDocumentProperties->getUserDefinedProperties();
if (!xPropertyContainer.is())
return false;
uno::Reference<beans::XPropertySet> xPropertySet(xPropertyContainer, uno::UNO_QUERY);
uno::Sequence<beans::Property> aProperties = xPropertySet->getPropertySetInfo()->getProperties();
for (const beans::Property& rProperty : aProperties)
{
if (rProperty.Name.startsWith("urn:bails:"))
return true;
}
return false;
}
SfxClassificationHelper::SfxClassificationHelper(SfxObjectShell& rObjectShell)
: m_pImpl(o3tl::make_unique<Impl>(rObjectShell))
{
uno::Reference<document::XDocumentProperties> xDocumentProperties = rObjectShell.getDocProperties();
uno::Reference<beans::XPropertyContainer> xPropertyContainer = xDocumentProperties->getUserDefinedProperties();
if (!xPropertyContainer.is())
return;
uno::Reference<beans::XPropertySet> xPropertySet(xPropertyContainer, uno::UNO_QUERY);
uno::Sequence<beans::Property> aProperties = xPropertySet->getPropertySetInfo()->getProperties();
for (const beans::Property& rProperty : aProperties)
{
if (!rProperty.Name.startsWith("urn:bails:"))
continue;
uno::Any aAny = xPropertySet->getPropertyValue(rProperty.Name);
OUString aValue;
if (aAny >>= aValue)
{
if (rProperty.Name == PROP_BACNAME())
m_pImpl->m_aCategory.m_aName = aValue;
else
m_pImpl->m_aCategory.m_aLabels[rProperty.Name] = aValue;
}
}
}
SfxClassificationHelper::~SfxClassificationHelper()
{
}
const OUString& SfxClassificationHelper::GetBACName()
{
return m_pImpl->m_aCategory.m_aName;
}
bool SfxClassificationHelper::HasImpactLevel()
{
std::map<OUString, OUString>::iterator it = m_pImpl->m_aCategory.m_aLabels.find("urn:bails:IntellectualProperty:Impact:Scale");
if (it == m_pImpl->m_aCategory.m_aLabels.end())
return false;
it = m_pImpl->m_aCategory.m_aLabels.find("urn:bails:IntellectualProperty:Impact:Level:Confidentiality");
if (it == m_pImpl->m_aCategory.m_aLabels.end())
return false;
return true;
}
bool SfxClassificationHelper::HasDocumentHeader()
{
std::map<OUString, OUString>::iterator it = m_pImpl->m_aCategory.m_aLabels.find(SfxClassificationHelper::PROP_DOCHEADER());
if (it == m_pImpl->m_aCategory.m_aLabels.end() || it->second.isEmpty())
return false;
return true;
}
bool SfxClassificationHelper::HasDocumentFooter()
{
std::map<OUString, OUString>::iterator it = m_pImpl->m_aCategory.m_aLabels.find(SfxClassificationHelper::PROP_DOCFOOTER());
if (it == m_pImpl->m_aCategory.m_aLabels.end() || it->second.isEmpty())
return false;
return true;
}
basegfx::BColor SfxClassificationHelper::GetImpactLevelColor()
{
basegfx::BColor aRet;
std::map<OUString, OUString>::iterator it = m_pImpl->m_aCategory.m_aLabels.find("urn:bails:IntellectualProperty:Impact:Scale");
if (it == m_pImpl->m_aCategory.m_aLabels.end())
return aRet;
OUString aScale = it->second;
it = m_pImpl->m_aCategory.m_aLabels.find("urn:bails:IntellectualProperty:Impact:Level:Confidentiality");
if (it == m_pImpl->m_aCategory.m_aLabels.end())
return aRet;
OUString aLevel = it->second;
// The spec defines two valid scale values: FIPS-199 and UK-Cabinet.
if (aScale == "UK-Cabinet")
{
static std::map<OUString, basegfx::BColor> aColors;
if (aColors.empty())
{
// Green -> brown -> orange -> red.
aColors["0"] = basegfx::BColor(0.0, 0.5, 0.0);
aColors["1"] = basegfx::BColor(0.5, 0.5, 0.0);
aColors["2"] = basegfx::BColor(1.0, 0.5, 0.0);
aColors["3"] = basegfx::BColor(0.5, 0.0, 0.0);
}
std::map<OUString, basegfx::BColor>::iterator itColor = aColors.find(aLevel);
if (itColor == aColors.end())
return aRet;
aRet = itColor->second;
}
else if (aScale == "FIPS-199")
{
static std::map<OUString, basegfx::BColor> aColors;
if (aColors.empty())
{
// Green -> orange -> red.
aColors["Low"] = basegfx::BColor(0.0, 0.5, 0.0);
aColors["Moderate"] = basegfx::BColor(1.0, 0.5, 0.0);
aColors["High"] = basegfx::BColor(0.5, 0.0, 0.0);
}
std::map<OUString, basegfx::BColor>::iterator itColor = aColors.find(aLevel);
if (itColor == aColors.end())
return aRet;
aRet = itColor->second;
}
return aRet;
}
OUString SfxClassificationHelper::GetDocumentWatermark()
{
std::map<OUString, OUString>::iterator it = m_pImpl->m_aCategory.m_aLabels.find(SfxClassificationHelper::PROP_DOCWATERMARK());
if (it != m_pImpl->m_aCategory.m_aLabels.end())
return it->second;
return OUString();
}
std::vector<OUString> SfxClassificationHelper::GetBACNames()
{
if (m_pImpl->m_aCategories.empty())
m_pImpl->parsePolicy();
std::vector<OUString> aRet;
std::transform(m_pImpl->m_aCategories.begin(), m_pImpl->m_aCategories.end(), std::back_inserter(aRet), [](const SfxClassificationCategory& rCategory)
{
return rCategory.m_aName;
});
return aRet;
}
void SfxClassificationHelper::SetBACName(const OUString& rName)
{
if (m_pImpl->m_aCategories.empty())
m_pImpl->parsePolicy();
std::vector<SfxClassificationCategory>::iterator it = std::find_if(m_pImpl->m_aCategories.begin(), m_pImpl->m_aCategories.end(), [&](const SfxClassificationCategory& rCategory)
{
return rCategory.m_aName == rName;
});
if (it == m_pImpl->m_aCategories.end())
{
SAL_WARN("sfx.view", "'" << rName << "' is not a recognized category name");
return;
}
m_pImpl->m_aCategory = *it;
m_pImpl->pushToObjectShell();
SfxViewFrame* pViewFrame = SfxViewFrame::Current();
if (!pViewFrame)
return;
UpdateInfobar(*pViewFrame);
}
void SfxClassificationHelper::UpdateInfobar(SfxViewFrame& rViewFrame)
{
OUString aBACName = GetBACName();
bool bImpactLevel = HasImpactLevel();
if (!aBACName.isEmpty() && bImpactLevel)
{
OUString aMessage = SfxResId(STR_CLASSIFIED_DOCUMENT);
aMessage = aMessage.replaceFirst("%1", aBACName);
basegfx::BColor aBackgroundColor = GetImpactLevelColor();
basegfx::BColor aForegroundColor(1.0, 1.0, 1.0);
rViewFrame.RemoveInfoBar("classification");
rViewFrame.AppendInfoBar("classification", aMessage, &aBackgroundColor, &aForegroundColor, &aForegroundColor, WB_CENTER);
}
}
const OUString& SfxClassificationHelper::PROP_DOCHEADER()
{
static OUString sProp("urn:bails:IntellectualProperty:Marking:document-header");
return sProp;
}
const OUString& SfxClassificationHelper::PROP_DOCFOOTER()
{
static OUString sProp("urn:bails:IntellectualProperty:Marking:document-footer");
return sProp;
}
const OUString& SfxClassificationHelper::PROP_DOCWATERMARK()
{
static OUString sProp("urn:bails:IntellectualProperty:Marking:document-watermark");
return sProp;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|