OSDN Git Service

MERGE:リビジョン1828をマージ
[nucleus-jp/nucleus-next.git] / nucleus / bookmarklet.php
1 <?php
2 /*
3  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
4  * Copyright (C) 2002-2012 The Nucleus Group
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * (see nucleus/documentation/index.html#license for more info)
11  */
12 /**
13  * This script allows adding items to Nucleus through bookmarklets. The member must be logged in
14  * in order to use this.
15  *
16  * @license http://nucleuscms.org/license.txt GNU General Public License
17  * @copyright Copyright (C) 2002-2012 The Nucleus Group
18  * @version $Id: bookmarklet.php 1624 2012-01-09 11:36:20Z sakamocchi $
19  */
20
21 // bookmarklet is part of admin area (might need XML-RPC)
22 $CONF = array();
23 $CONF['UsingAdminArea'] = 1;
24
25 // include all classes and config data
26 include('../config.php');
27
28 // get skin object
29 $skinid = $CONF['BookmarkletSkin'];
30 if ( !Skin::existsID($skinid) )
31 {
32         echo _ERROR_SKIN;
33         exit;
34 }
35 $skin = new Skin($skinid, 'AdminActions', 'AdminSkin');
36
37 // check logged-in or pass through
38 $action = requestVar('action');
39 if ( !$member->isLoggedIn() )
40 {
41         bm_loginAndPassThrough($skin, $action);
42         exit;
43 }
44 else if ( $action == 'login')
45 {
46         $action = requestVar('nextaction');
47 }
48
49 $action = strtolower($action);
50
51 if ( $action == 'contextmenucode' )
52 {
53         bm_doContextMenuCode();
54         exit;
55 }
56 else if ( $action == '' )
57 {
58         $action = 'add';
59 }
60
61 // check ticket
62 $aActionsNotToCheck = array('login', 'add', 'edit');
63 if ( !in_array($action, $aActionsNotToCheck) )
64 {
65         if ( !$manager->checkTicket() )
66         {
67                 bm_doError(_ERROR_BADTICKET);
68         }
69 }
70
71 // find out what to do
72 switch ( $action )
73 {
74         // adds the item for real
75         case 'additem':
76                 bm_doAddItem($skin);
77                 break;
78         
79         // shows the edit item form
80         case 'edit':
81                 bm_doEditForm($skin);
82                 break;
83         
84         // edits the item for real
85         case 'edititem':
86                 bm_doEditItem($skin);
87                 break;
88         
89         // on login, 'action' gets changed to 'nextaction'
90         case 'login':
91                 bm_doError($skin, 'Something went wrong');
92                 break;
93         
94         // shows the fill in form
95         case 'add':
96         default:
97                 bm_doShowForm($skin);
98                 break;
99 }
100
101 function bm_doAddItem($skin)
102 {
103         global $member, $manager, $CONF;
104         
105         $manager->loadClass('ITEM');
106         $result = Item::createFromRequest();
107         
108         if ( $result['status'] == 'error' )
109         {
110                 bm_doError($result['message']);
111         }
112         
113         $blogid = getBlogIDFromItemID($result['itemid']);
114         $blog =& $manager->getBlog($blogid);
115         
116         if ( $result['status'] == 'newcategory' )
117         {
118                 $message = 'Item was added, and a new category was created. <a href="index.php?action=categoryedit&amp;blogid=' . $blogid . '&amp;catid=' . $result['catid'] . '" onclick="if (event &amp;&amp; event.preventDefault) event.preventDefault(); window.open(this.href); return false;" title="Opens in new window">Click here to edit the name and description of the category.</a>';
119                 $extrahead = '';
120         }
121         else
122         {
123                 $message = _ITEM_ADDED;
124                 $extrahead = '';
125         }
126         
127         bm_message($skin, _ITEM_ADDED, _ITEM_ADDED, $message,$extrahead);
128         
129         return;
130         
131         return;
132 }
133
134 function bm_doEditItem($skin)
135 {
136         global $member, $manager, $CONF;
137         
138         $itemid = intRequestVar('itemid');
139         $catid = postVar('catid');
140         
141         // only allow if user is allowed to alter item
142         if ( !$member->canUpdateItem($itemid, $catid) )
143         {
144                 bm_doError(_ERROR_DISALLOWED);
145         }
146         
147         $body = postVar('body');
148         $title = postVar('title');
149         $more = postVar('more');
150         $closed = intPostVar('closed');
151         $actiontype = postVar('actiontype');
152         $draftid = intPostVar('draftid');
153         
154         // redirect to admin area on delete (has delete confirmation)
155         if ( $actiontype == 'delete' )
156         {
157                 redirect('index.php?action=itemdelete&itemid=' . $itemid);
158                 exit;
159         }
160         
161         // create new category if needed (only on edit/changedate)
162         if ( i18n::strpos($catid,'newcat') === 0 )
163         {
164                 // get blogid
165                 list($blogid) = sscanf($catid, "newcat-%d");
166                 
167                 // create
168                 $blog =& $manager->getBlog($blogid);
169                 $catid = $blog->createNewCategory();
170                 
171                 // show error when sth goes wrong
172                 if ( !$catid )
173                 {
174                         bm_doError('Could not create new category');
175                 }
176         }
177         
178         // only edit action is allowed for bookmarklet edit
179         switch ( $actiontype )
180         {
181                 case 'changedate':
182                         $publish = 1;
183                         $wasdraft = 0;
184                         $timestamp = mktime(intPostVar('hour'), intPostVar('minutes'), 0, intPostVar('month'), intPostVar('day'), intPostVar('year') );
185                         break;
186                 case 'edit':
187                         $publish = 1;
188                         $wasdraft = 0;
189                         $timestamp = 0;
190                         break;
191                 case 'backtodrafts':
192                         $publish = 0;
193                         $wasdraft = 0;
194                         $timestamp = 0;
195                         break;
196                 default:
197                         bm_doError('Something went wrong');
198         }
199         
200         // update item for real
201         Item::update($itemid, $catid, $title, $body, $more, $closed, $wasdraft, $publish, $timestamp);
202         
203         if ( $draftid > 0 )
204         {
205                 Item::delete($draftid);
206         }
207         
208         // show success message
209         if ( $catid != intPostVar('catid') )
210         {
211                 bm_message($skin, _ITEM_UPDATED, _ITEM_UPDATED, 'Item was added, and a new category was created. <a href="index.php?action=categoryedit&amp;blogid=' . $blog->getID() . '&amp;catid=' . $catid . '" onclick="if (event &amp;&amp; event.preventDefault) event.preventDefault(); window.open(this.href); return false;" title="Opens in new window">Click here to edit the name and description of the category.</a>', '');
212         }
213         else
214         {
215                 bm_message($skin, _ITEM_UPDATED, _ITEM_UPDATED, _ITEM_UPDATED, '');
216         }
217         
218         return;
219 }
220
221 function bm_loginAndPassThrough($skin, $action='add')
222 {
223         /*
224          * TODO: これを出力させる
225         $blogid = intRequestVar('blogid');
226         $itemid = intRequestVar('itemid');
227         $log_text = requestVar('logtext');
228         $log_link = requestVar('loglink');
229         $log_linktitle = requestVar('loglinktitle');
230         
231         echo '<input type="hidden" name="blogid" value="' . Entity::hsc($blogid). '" />' . "\n";
232         echo '<input type="hidden" name="itemid" value="' . Entity::hsc($itemid). '" />' . "\n";
233         echo '<input type="hidden" name="logtext" value="' . Entity::hsc($log_text) . '" />' . "\n";
234         echo '<input type="hidden" name="loglink" value="' . Entity::hsc($log_link) . '" />' . "\n";
235         echo '<input type="hidden" name="loglinktitle" value="' . Entity::hsc($log_linktitle) . '" />' . "\n";
236         echo "<input type=\"hidden\" name=\"nextaction\" value=\"{$action}\" />\n";
237         */
238         
239         $skin->parse('pagehead');
240         $skin->parse('showlogin');
241         $skin->parse('pagefoot');
242         
243         
244         return;
245 }
246
247 function bm_doShowForm($skin)
248 {
249         global $manager, $member;
250         
251         $blogid                 = intRequestVar('blogid');
252         $log_text               = trim(requestVar('logtext'));
253         $log_link               = requestVar('loglink');
254         $log_linktitle  = requestVar('loglinktitle');
255         
256         if ( !Blog::existsID($blogid) )
257         {
258                 bm_doError(_ERROR_NOSUCHBLOG);
259         }
260         else
261         {
262                 $blog =& $manager->getBlog($blogid);
263         }
264         
265         if ( !$member->isTeamMember($blogid) )
266         {
267                 bm_doError(_ERROR_NOTONTEAM);
268         }
269         
270         $logje = '';
271         
272         if ( $log_text )
273         {
274                 $logje .= '<blockquote><div>"' . Entity::hsc($log_text) . '"</div></blockquote>' . "\n";
275         }
276         
277         if ( !$log_linktitle )
278         {
279                 $log_linktitle = $log_link;
280         }
281         
282         if ( $log_link )
283         {
284                 $logje .= '<a href="' . Entity::hsc($log_link) . '">' . Entity::hsc($log_linktitle) . '</a>';
285         }
286         
287         $variables = array();
288         $variables['body'] = $logje;
289         $variables['title'] = Entity::hsc($log_linktitle);
290         
291         /* TODO: $itemを渡す */
292         $skin->parse('pagehead');
293         $skin->parse('itemedit');
294         $skin->parse('pagefoot');
295         
296         return;
297 }
298
299 function bm_doEditForm($skin)
300 {
301         global $member, $manager;
302         
303         $itemid = intRequestVar('itemid');
304         
305         if ( !$manager->existsItem($itemid, 0, 0) )
306         {
307                 bm_doError(_ERROR_NOSUCHITEM);
308         }
309         
310         if ( !$member->canAlterItem($itemid) )
311         {
312                 bm_doError(_ERROR_DISALLOWED);
313         }
314         
315         $variables =& $manager->getItem($itemid, 1, 1);
316         $blog =& $manager->getBlog(getBlogIDFromItemID($itemid) );
317         
318         $manager->notify('PrepareItemForEdit', array('item' => &$variables) );
319         
320         if ( $blog->convertBreaks() )
321         {
322                 $variables['body'] = removeBreaks($variables['body']);
323                 $variables['more'] = removeBreaks($variables['more']);
324         }
325         
326         /* TODO: $itemを渡す */
327         $skin->parse('pagehead');
328         $skin->parse('createitem');
329         $skin->parse('pagefoot');
330         
331         return;}
332
333 function bm_doError($skin, $msg)
334 {
335         bm_message($skin, _ERROR, _ERRORMSG, $msg);
336         die;
337 }
338
339 function bm_message($skin, $title, $head, $msg, $extrahead = '')
340 {
341         /* TODO: $title, $head, $msg, $extraheadを渡す */
342         $skin->parse('pagehead');
343         $skin->parse('adminerrorpage');
344         $skin->parse('pagefoot');
345         
346         
347         return;
348 }
349
350 function bm_doContextMenuCode($width=600, $height=500)
351 {
352         global $CONF;   
353         $blogid = (integer) intGetVar('blogid');
354         
355         echo "<script type=\"text/javascript\" defer=\"defer\">\n";
356         echo "<![CDATA[\n";
357         echo " doc = external.menuArguments.document;\n";
358         echo " lt = encodeURIComponent(doc.selection.createRange().text);\n";
359         echo " loglink = encodeURIComponent(external.menuArguments.location.href);\n";
360         echo " loglinktitle = encodeURIComponent(doc.title);\n";
361         echo " wingm = window.open('{$CONF['AdminURL']}bookmarklet.php?blogid={$blogid}&logtext=' + lt + '&loglink=' + loglink + '&loglinktitle=' + loglinktitle, 'nucleusbm', 'scrollbars=yes,width={$width},height={$height},left=10,top=10,status=yes,resizable=yes')\n";
362         echo " wingm.focus()\n";
363         echo "]]>\n";
364         echo "</script>\n";
365 }