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 package fr.paris.lutece.plugins.document.modules.geoloc.service;
35
36 import fr.paris.lutece.plugins.document.business.DocumentType;
37 import fr.paris.lutece.plugins.document.business.DocumentTypeHome;
38 import fr.paris.lutece.plugins.document.business.attributes.DocumentAttribute;
39 import fr.paris.lutece.plugins.document.business.attributes.DocumentAttributeHome;
40 import fr.paris.lutece.plugins.leaflet.service.IIconProvider;
41 import fr.paris.lutece.portal.service.util.AppLogService;
42
43 import java.util.List;
44
45
46 public class DocumentIconProvider implements IIconProvider
47 {
48
49 private static final String ATTR_PARAMETER_ICON = "icon";
50
51 public String getIcon( String iconKey )
52 {
53 String documentTypeCode = iconKey.substring( 0, iconKey.indexOf( "-" ) );
54 String documentAttributeCode = iconKey.substring( iconKey.indexOf( "-" ) + 1 );
55
56 DocumentType type = DocumentTypeHome.findByPrimaryKey( documentTypeCode );
57 DocumentAttribute attribute = null;
58
59 for ( DocumentAttribute _attribute : type.getAttributes( ) )
60 {
61 if ( _attribute.getCode( ).equals( documentAttributeCode ) )
62 {
63 attribute = _attribute;
64
65 break;
66 }
67 }
68
69 if ( attribute == null )
70 {
71 AppLogService.error( "Document icon provider: no attribute " + documentAttributeCode + " for doctype " +
72 documentTypeCode );
73
74 return null;
75 }
76
77 List<String> parameterValues = DocumentAttributeHome.getAttributeParameterValues( attribute.getId( ),
78 ATTR_PARAMETER_ICON );
79
80 if ( parameterValues.size( ) > 0 )
81 {
82 return parameterValues.get( 0 );
83 }
84
85 return null;
86 }
87 }