1 | /*******************************************************************************
|
---|
2 | * You may amend and distribute as you like, but don't remove this header!
|
---|
3 | *
|
---|
4 | * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets.
|
---|
5 | * See http://www.codeplex.com/EPPlus for details.
|
---|
6 | *
|
---|
7 | * Copyright (C) 2011 Jan Källman
|
---|
8 | *
|
---|
9 | * This library is free software; you can redistribute it and/or
|
---|
10 | * modify it under the terms of the GNU Lesser General Public
|
---|
11 | * License as published by the Free Software Foundation; either
|
---|
12 | * version 2.1 of the License, or (at your option) any later version.
|
---|
13 |
|
---|
14 | * This library is distributed in the hope that it will be useful,
|
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
17 | * See the GNU Lesser General Public License for more details.
|
---|
18 | *
|
---|
19 | * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
|
---|
20 | * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
|
---|
21 | *
|
---|
22 | * All code and executables are provided "as is" with no warranty either express or implied.
|
---|
23 | * The author accepts no liability for any damage or loss of business that this product may cause.
|
---|
24 | *
|
---|
25 | * Code change notes:
|
---|
26 | *
|
---|
27 | * Author Change Date
|
---|
28 | *******************************************************************************
|
---|
29 | * Jan Källman Added 25-Oct-2012
|
---|
30 | *******************************************************************************/
|
---|
31 | using System;
|
---|
32 | using System.Collections.Generic;
|
---|
33 | using System.Linq;
|
---|
34 | using System.Text;
|
---|
35 | using Ionic.Zip;
|
---|
36 | using System.IO;
|
---|
37 | using System.Security;
|
---|
38 | using OfficeOpenXml.Packaging.Ionic.Zip;
|
---|
39 |
|
---|
40 | namespace OfficeOpenXml.Packaging
|
---|
41 | {
|
---|
42 | public class ZipPackageRelationshipCollection : IEnumerable<ZipPackageRelationship>
|
---|
43 | {
|
---|
44 | internal protected Dictionary<string, ZipPackageRelationship> _rels = new Dictionary<string, ZipPackageRelationship>(StringComparer.InvariantCultureIgnoreCase);
|
---|
45 | internal void Add(ZipPackageRelationship item)
|
---|
46 | {
|
---|
47 | _rels.Add(item.Id, item);
|
---|
48 | }
|
---|
49 | public IEnumerator<ZipPackageRelationship> GetEnumerator()
|
---|
50 | {
|
---|
51 | return _rels.Values.GetEnumerator();
|
---|
52 | }
|
---|
53 |
|
---|
54 | System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
---|
55 | {
|
---|
56 | return _rels.Values.GetEnumerator();
|
---|
57 | }
|
---|
58 |
|
---|
59 | internal void Remove(string id)
|
---|
60 | {
|
---|
61 | _rels.Remove(id);
|
---|
62 | }
|
---|
63 | internal bool ContainsKey(string id)
|
---|
64 | {
|
---|
65 | return _rels.ContainsKey(id);
|
---|
66 | }
|
---|
67 | internal ZipPackageRelationship this[string id]
|
---|
68 | {
|
---|
69 | get
|
---|
70 | {
|
---|
71 | return _rels[id];
|
---|
72 | }
|
---|
73 | }
|
---|
74 | internal ZipPackageRelationshipCollection GetRelationshipsByType(string relationshipType)
|
---|
75 | {
|
---|
76 | var ret = new ZipPackageRelationshipCollection();
|
---|
77 | foreach (var rel in _rels.Values)
|
---|
78 | {
|
---|
79 | if (rel.RelationshipType == relationshipType)
|
---|
80 | {
|
---|
81 | ret.Add(rel);
|
---|
82 | }
|
---|
83 | }
|
---|
84 | return ret;
|
---|
85 | }
|
---|
86 |
|
---|
87 | internal void WriteZip(ZipOutputStream os, string fileName)
|
---|
88 | {
|
---|
89 | StringBuilder xml = new StringBuilder("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">");
|
---|
90 | foreach (var rel in _rels.Values)
|
---|
91 | {
|
---|
92 | xml.AppendFormat("<Relationship Id=\"{0}\" Type=\"{1}\" Target=\"{2}\"{3}/>", SecurityElement.Escape(rel.Id), rel.RelationshipType, SecurityElement.Escape(rel.TargetUri.OriginalString), rel.TargetMode == TargetMode.External ? " TargetMode=\"External\"" : "");
|
---|
93 | }
|
---|
94 | xml.Append("</Relationships>");
|
---|
95 |
|
---|
96 | os.PutNextEntry(fileName);
|
---|
97 | byte[] b = Encoding.UTF8.GetBytes(xml.ToString());
|
---|
98 | os.Write(b, 0, b.Length);
|
---|
99 | }
|
---|
100 |
|
---|
101 | public int Count
|
---|
102 | {
|
---|
103 | get
|
---|
104 | {
|
---|
105 | return _rels.Count;
|
---|
106 | }
|
---|
107 | }
|
---|
108 | }
|
---|
109 | }
|
---|