summaryrefslogtreecommitdiff
path: root/0.8/src/html.cpp
blob: 7c9dd4b9d42f50b0afaf8860ecbf71ef6eb1f5d4 (plain)
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
/*:*
 *: File: ./src/html.cpp
 *: 
 *: yChat; Homepage: ychat.buetow.org; Version 0.9.0-CURRENT
 *: 
 *: Copyright (C) 2003 Paul C. Buetow, Volker Richter
 *: Copyright (C) 2004 Paul C. Buetow
 *: Copyright (C) 2005 EXA Digital Solutions GbR
 *: Copyright (C) 2006, 2007 Paul C. Buetow
 *: 
 *: This program is free software; you can redistribute it and/or
 *: modify it under the terms of the GNU General Public License
 *: as published by the Free Software Foundation; either version 2
 *: of the License, or (at your option) any later version.
 *: 
 *: This program is distributed in the hope that it will be useful,
 *: but WITHOUT ANY WARRANTY; without even the implied warranty of
 *: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *: GNU General Public License for more details.
 *: 
 *: You should have received a copy of the GNU General Public License
 *: along with this program; if not, write to the Free Software
 *: Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *:*/

#ifndef HTML_CPP
#define HTML_CPP

#include <fstream>
#include "html.h"

using namespace std;

html::html( )
{
  set_name( wrap::CONF->get_elem( "httpd.templatedir" ) );
}

html::~html( )
{}

void
html::clear_cache( )
{
  clear();
  wrap::system_message( CLRHTML );
}

string
html::parse( map<string,string> &map_params )
{
  string s_file = map_params["request"];

  // check if s_file is in the container.
  string s_templ;

  // if not, read file.
  if ( ! shashmap<string>::exists( s_file ) )
  {
    string   s_path  = get_name();
    ifstream if_templ( s_path.append( s_file ).c_str(), ios::binary );

    if ( ! if_templ )
    {
      wrap::system_message( OFFFOUND + s_path );
      if (map_params["request"] == wrap::CONF->get_elem( "httpd.html.notfound" ))
        return "";

      map_params["request"] = wrap::CONF->get_elem( "httpd.html.notfound" );
      return parse( map_params );
    }

    char c_buf;
    while ( !if_templ.eof() )
    {
      if_templ.get( c_buf );
      s_templ += c_buf;
    }

    if ( map_params["content-type"].compare(0,5,"text/") == 0 )
      s_templ.erase(s_templ.end()-1);

    if_templ.close();


    // cache file.
    if (wrap::CONF->get_bool("httpd.html.cache"))
    {
      wrap::system_message( TECACHE + s_path );
      shashmap<string>::add_elem(s_templ, s_file);
    }
    else
    {
      wrap::system_message( TECACHN + s_path );
    }
  }
  else
  {
    s_templ = shashmap<string>::get_elem( s_file );
  }

  // find %%KEY%% token and substituate those.
  unsigned long pos[2];
  pos[0] = pos[1] = 0;

  for (;;)
  {
    pos[0] = s_templ.find( "%%", pos[1] );

    if ( pos[0] == string::npos )
      break;

    pos[0] += 2;
    pos[1]  = s_templ.find( "%%", pos[0] );

    if ( pos[0] == string::npos )
      break;

    // get key and val.
    string s_key = s_templ.substr( pos[0], pos[1]-pos[0] );
    string s_val = wrap::CONF->get_elem( s_key );

    // if s_val is empty use map_params.
    if ( s_val.empty() )
      s_val = map_params[ s_key ];

    // substituate key with val.
    s_templ.replace( pos[0]-2, pos[1]-pos[0]+4, s_val );

    // calculate the string displacement.
    int i_diff = s_val.length() - ( pos[1] - pos[0] + 4);

    pos[1] += 2 + i_diff;

  };

  return s_templ;
}

//<<*
void
html::online_list( user *p_user, map<string,string> &map_params )
{
  // prepare user_list.
  string s_list;

  room* p_room = p_user->get_room();

  p_room->get_user_list( s_list );

  map_params["room"] = p_room->get_name();
  map_params["topic"] = p_room->get_topic();
  map_params["userlist"] = s_list;
}
//*>>

#endif