Store openid4java consumer manager in core.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / core / Core.java
1 /*
2  * DemosceneMusic - Core.java - Copyright © 2012 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.demoscenemusic.core;
19
20 import javax.naming.Context;
21 import javax.naming.InitialContext;
22 import javax.naming.NamingException;
23 import javax.servlet.ServletContextEvent;
24 import javax.servlet.ServletContextListener;
25 import javax.sql.DataSource;
26
27 import net.pterodactylus.demoscenemusic.data.DataManager;
28 import net.pterodactylus.util.database.AbstractDatabase;
29 import net.pterodactylus.util.database.Database;
30
31 import org.openid4java.consumer.ConsumerManager;
32
33 /**
34  * TODO
35  *
36  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
37  */
38 public class Core implements ServletContextListener {
39
40         private DataManager dataManager;
41
42         private final ConsumerManager consumerManager = new ConsumerManager();
43
44         public DataManager getDataManager() {
45                 return dataManager;
46         }
47
48         /**
49          * @return the consumerManager
50          */
51         public ConsumerManager getConsumerManager() {
52                 return consumerManager;
53         }
54
55         //
56         // SERVLETCONTEXTLISTENER METHODS
57         //
58
59         /**
60          * {@inheritDoc}
61          */
62         @Override
63         public void contextInitialized(ServletContextEvent servletContextEvent) {
64                 servletContextEvent.getServletContext().setAttribute("core", this);
65                 try {
66                         Context context = new InitialContext();
67                         DataSource dataSource = (DataSource) context.lookup("java:/comp/env/jdbc/demosceneMusic");
68                         Database database = AbstractDatabase.fromDataSource(dataSource);
69                         dataManager = new DataManager(database);
70                         servletContextEvent.getServletContext().setAttribute("dataManager", dataManager);
71                 } catch (NamingException ne1) {
72                         servletContextEvent.getServletContext().log("Could not create database connection.", ne1);
73                 }
74         }
75
76         /**
77          * {@inheritDoc}
78          */
79         @Override
80         public void contextDestroyed(ServletContextEvent arg0) {
81                 /* do nothing. */
82         }
83
84 }