~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-openhealth-integration/src/main/java/org/hisp/dhis/openhealth/action/GetOlapURLOptionsAction.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.openhealth.action;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2007, University of Oslo
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * * Redistributions of source code must retain the above copyright notice, this
 
10
 *   list of conditions and the following disclaimer.
 
11
 * * Redistributions in binary form must reproduce the above copyright notice,
 
12
 *   this list of conditions and the following disclaimer in the documentation
 
13
 *   and/or other materials provided with the distribution.
 
14
 * * Neither the name of the HISP project nor the names of its contributors may
 
15
 *   be used to endorse or promote products derived from this software without
 
16
 *   specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 
22
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
25
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
import java.util.ArrayList;
 
31
import java.util.Collections;
 
32
import java.util.List;
 
33
 
 
34
import org.hisp.dhis.i18n.I18nFormat;
 
35
import org.hisp.dhis.indicator.Indicator;
 
36
import org.hisp.dhis.indicator.IndicatorService;
 
37
import org.hisp.dhis.indicator.comparator.IndicatorNameComparator;
 
38
import org.hisp.dhis.organisationunit.OrganisationUnitLevel;
 
39
import org.hisp.dhis.organisationunit.OrganisationUnitService;
 
40
import org.hisp.dhis.period.MonthlyPeriodType;
 
41
import org.hisp.dhis.period.Period;
 
42
import org.hisp.dhis.period.PeriodService;
 
43
import org.hisp.dhis.period.comparator.PeriodComparator;
 
44
 
 
45
import com.opensymphony.xwork.Action;
 
46
 
 
47
/**
 
48
 * @author Lars Helge Overland
 
49
 * @version $Id$
 
50
 */
 
51
public class GetOlapURLOptionsAction
 
52
    implements Action
 
53
{
 
54
    // -------------------------------------------------------------------------
 
55
    // Dependencies
 
56
    // -------------------------------------------------------------------------
 
57
 
 
58
    private IndicatorService indicatorService;
 
59
 
 
60
    public void setIndicatorService( IndicatorService indicatorService )
 
61
    {
 
62
        this.indicatorService = indicatorService;
 
63
    }
 
64
 
 
65
    private PeriodService periodService;
 
66
 
 
67
    public void setPeriodService( PeriodService periodService )
 
68
    {
 
69
        this.periodService = periodService;
 
70
    }
 
71
 
 
72
    private OrganisationUnitService organisationUnitService;
 
73
 
 
74
    public void setOrganisationUnitService( OrganisationUnitService organisationUnitService )
 
75
    {
 
76
        this.organisationUnitService = organisationUnitService;
 
77
    }
 
78
 
 
79
    private I18nFormat format;
 
80
 
 
81
    public void setFormat( I18nFormat format )
 
82
    {
 
83
        this.format = format;
 
84
    }
 
85
 
 
86
    // -------------------------------------------------------------------------
 
87
    // Output
 
88
    // -------------------------------------------------------------------------
 
89
 
 
90
    private List<Indicator> availableIndicators;
 
91
 
 
92
    public List<Indicator> getAvailableIndicators()
 
93
    {
 
94
        return availableIndicators;
 
95
    }
 
96
 
 
97
    private List<Period> availablePeriods;
 
98
 
 
99
    public List<Period> getAvailablePeriods()
 
100
    {
 
101
        return availablePeriods;
 
102
    }
 
103
 
 
104
    private List<OrganisationUnitLevel> availableLevels;
 
105
    
 
106
    public List<OrganisationUnitLevel> getAvailableLevels()
 
107
    {
 
108
        return availableLevels;
 
109
    }
 
110
 
 
111
    // -------------------------------------------------------------------------
 
112
    // Action implementation
 
113
    // -------------------------------------------------------------------------
 
114
 
 
115
    public String execute()
 
116
    {
 
117
        availableIndicators = new ArrayList<Indicator>( indicatorService.getAllIndicators() );
 
118
        availablePeriods = new ArrayList<Period>( periodService.getPeriodsByPeriodType( new MonthlyPeriodType() ) );
 
119
        availableLevels = organisationUnitService.getOrganisationUnitLevels();
 
120
        
 
121
        Collections.sort( availableIndicators, new IndicatorNameComparator() );
 
122
        Collections.sort( availablePeriods, new PeriodComparator() );
 
123
        
 
124
        for ( Period period : availablePeriods )
 
125
        {
 
126
            period.setName( format.formatPeriod( period ) );
 
127
        }
 
128
        
 
129
        return SUCCESS;
 
130
    }
 
131
}