xref: /dokuwiki/lib/plugins/usermanager/admin.php (revision a664aaba47504f40f4be3124a1fd17415a60e79e)
10440ff15Schris<?php
254cc7aa4SAndreas Gohr
38553d24dSAndreas Gohruse dokuwiki\Extension\AdminPlugin;
451ee2399SGerrit Uitslaguse dokuwiki\Extension\AuthPlugin;
554cc7aa4SAndreas Gohruse dokuwiki\Utf8\Clean;
6*a664aabaSAndreas Gohr
70440ff15Schris/*
80440ff15Schris *  User Manager
90440ff15Schris *
100440ff15Schris *  Dokuwiki Admin Plugin
110440ff15Schris *
120440ff15Schris *  This version of the user manager has been modified to only work with
130440ff15Schris *  objectified version of auth system
140440ff15Schris *
150440ff15Schris *  @author  neolao <neolao@neolao.com>
160440ff15Schris *  @author  Chris Smith <chris@jalakai.co.uk>
170440ff15Schris */
18*a664aabaSAndreas Gohr
190440ff15Schris/**
200440ff15Schris * All DokuWiki plugins to extend the admin function
210440ff15Schris * need to inherit from this class
220440ff15Schris */
238553d24dSAndreas Gohrclass admin_plugin_usermanager extends AdminPlugin
243a97d936SAndreas Gohr{
25bf9be0e3SAndreas Gohr    protected const IMAGE_DIR = DOKU_BASE . 'lib/plugins/usermanager/images/';
260440ff15Schris
2754cc7aa4SAndreas Gohr    protected $auth;        // auth object
283a97d936SAndreas Gohr    protected $users_total = 0;     // number of registered users
2954cc7aa4SAndreas Gohr    protected $filter = [];   // user selection filter(s)
303a97d936SAndreas Gohr    protected $start = 0;          // index of first user to be displayed
313a97d936SAndreas Gohr    protected $last = 0;           // index of the last user to be displayed
323a97d936SAndreas Gohr    protected $pagesize = 20;      // number of users to list on one page
333a97d936SAndreas Gohr    protected $edit_user = '';     // set to user selected for editing
3454cc7aa4SAndreas Gohr    protected $edit_userdata = [];
353a97d936SAndreas Gohr    protected $disabled = '';      // if disabled set to explanatory string
3654cc7aa4SAndreas Gohr    protected $import_failures = [];
373a97d936SAndreas Gohr    protected $lastdisabled = false; // set to true if last user is unknown and last button is hence buggy
380440ff15Schris
390440ff15Schris    /**
400440ff15Schris     * Constructor
410440ff15Schris     */
423a97d936SAndreas Gohr    public function __construct()
433a97d936SAndreas Gohr    {
4451ee2399SGerrit Uitslag        /** @var AuthPlugin $auth */
450440ff15Schris        global $auth;
460440ff15Schris
470440ff15Schris        $this->setupLocale();
4851d94d49Schris
4951d94d49Schris        if (!isset($auth)) {
503a97d936SAndreas Gohr            $this->disabled = $this->lang['noauth'];
5182fd59b6SAndreas Gohr        } elseif (!$auth->canDo('getUsers')) {
523a97d936SAndreas Gohr            $this->disabled = $this->lang['nosupport'];
5351d94d49Schris        } else {
5451d94d49Schris            // we're good to go
553a97d936SAndreas Gohr            $this->auth = &$auth;
5651d94d49Schris        }
57ae1afd2fSChristopher Smith
58ae1afd2fSChristopher Smith        // attempt to retrieve any import failures from the session
590e80bb5eSChristopher Smith        if (!empty($_SESSION['import_failures'])) {
603a97d936SAndreas Gohr            $this->import_failures = $_SESSION['import_failures'];
61ae1afd2fSChristopher Smith        }
620440ff15Schris    }
630440ff15Schris
640440ff15Schris    /**
65c5a7c0c6SGerrit Uitslag     * Return prompt for admin menu
66253d4b48SGerrit Uitslag     *
67253d4b48SGerrit Uitslag     * @param string $language
68253d4b48SGerrit Uitslag     * @return string
690440ff15Schris     */
703a97d936SAndreas Gohr    public function getMenuText($language)
713a97d936SAndreas Gohr    {
720440ff15Schris
733a97d936SAndreas Gohr        if (!is_null($this->auth))
740440ff15Schris            return parent::getMenuText($language);
750440ff15Schris
763a97d936SAndreas Gohr        return $this->getLang('menu') . ' ' . $this->disabled;
770440ff15Schris    }
780440ff15Schris
790440ff15Schris    /**
800440ff15Schris     * return sort order for position in admin menu
81253d4b48SGerrit Uitslag     *
82253d4b48SGerrit Uitslag     * @return int
830440ff15Schris     */
843a97d936SAndreas Gohr    public function getMenuSort()
853a97d936SAndreas Gohr    {
860440ff15Schris        return 2;
870440ff15Schris    }
880440ff15Schris
890440ff15Schris    /**
9067a31a83SMichael Große     * @return int current start value for pageination
9167a31a83SMichael Große     */
923a97d936SAndreas Gohr    public function getStart()
933a97d936SAndreas Gohr    {
943a97d936SAndreas Gohr        return $this->start;
9567a31a83SMichael Große    }
9667a31a83SMichael Große
9767a31a83SMichael Große    /**
9867a31a83SMichael Große     * @return int number of users per page
9967a31a83SMichael Große     */
1003a97d936SAndreas Gohr    public function getPagesize()
1013a97d936SAndreas Gohr    {
1023a97d936SAndreas Gohr        return $this->pagesize;
10367a31a83SMichael Große    }
10467a31a83SMichael Große
10567a31a83SMichael Große    /**
106462e9e37SMichael Große     * @param boolean $lastdisabled
107462e9e37SMichael Große     */
1083a97d936SAndreas Gohr    public function setLastdisabled($lastdisabled)
1093a97d936SAndreas Gohr    {
1103a97d936SAndreas Gohr        $this->lastdisabled = $lastdisabled;
111462e9e37SMichael Große    }
112462e9e37SMichael Große
113462e9e37SMichael Große    /**
114c5a7c0c6SGerrit Uitslag     * Handle user request
115253d4b48SGerrit Uitslag     *
116253d4b48SGerrit Uitslag     * @return bool
1170440ff15Schris     */
1183a97d936SAndreas Gohr    public function handle()
1193a97d936SAndreas Gohr    {
12000d58927SMichael Hamann        global $INPUT;
1213a97d936SAndreas Gohr        if (is_null($this->auth)) return false;
1220440ff15Schris
1230440ff15Schris        // extract the command and any specific parameters
1240440ff15Schris        // submit button name is of the form - fn[cmd][param(s)]
12500d58927SMichael Hamann        $fn = $INPUT->param('fn');
1260440ff15Schris
1270440ff15Schris        if (is_array($fn)) {
1280440ff15Schris            $cmd = key($fn);
1290440ff15Schris            $param = is_array($fn[$cmd]) ? key($fn[$cmd]) : null;
1300440ff15Schris        } else {
1310440ff15Schris            $cmd = $fn;
1320440ff15Schris            $param = null;
1330440ff15Schris        }
1340440ff15Schris
1350440ff15Schris        if ($cmd != "search") {
1363a97d936SAndreas Gohr            $this->start = $INPUT->int('start', 0);
1373a97d936SAndreas Gohr            $this->filter = $this->retrieveFilter();
1380440ff15Schris        }
1390440ff15Schris
1400440ff15Schris        switch ($cmd) {
1413a97d936SAndreas Gohr            case "add":
1423a97d936SAndreas Gohr                $this->addUser();
1430440ff15Schris                break;
1443a97d936SAndreas Gohr            case "delete":
1453a97d936SAndreas Gohr                $this->deleteUser();
1463a97d936SAndreas Gohr                break;
1473a97d936SAndreas Gohr            case "modify":
1483a97d936SAndreas Gohr                $this->modifyUser();
1493a97d936SAndreas Gohr                break;
1503a97d936SAndreas Gohr            case "edit":
1513a97d936SAndreas Gohr                $this->editUser($param);
1523a97d936SAndreas Gohr                break;
1533a97d936SAndreas Gohr            case "search":
1543a97d936SAndreas Gohr                $this->setFilter($param);
1553a97d936SAndreas Gohr                $this->start = 0;
1563a97d936SAndreas Gohr                break;
1573a97d936SAndreas Gohr            case "export":
1583a97d936SAndreas Gohr                $this->exportCSV();
1593a97d936SAndreas Gohr                break;
1603a97d936SAndreas Gohr            case "import":
1613a97d936SAndreas Gohr                $this->importCSV();
1623a97d936SAndreas Gohr                break;
1633a97d936SAndreas Gohr            case "importfails":
1643a97d936SAndreas Gohr                $this->downloadImportFailures();
1653a97d936SAndreas Gohr                break;
1660440ff15Schris        }
1670440ff15Schris
1683a97d936SAndreas Gohr        $this->users_total = $this->auth->canDo('getUserCount') ? $this->auth->getUserCount($this->filter) : -1;
1690440ff15Schris
1700440ff15Schris        // page handling
1710440ff15Schris        switch ($cmd) {
1723a97d936SAndreas Gohr            case 'start':
1733a97d936SAndreas Gohr                $this->start = 0;
1743a97d936SAndreas Gohr                break;
1753a97d936SAndreas Gohr            case 'prev':
1763a97d936SAndreas Gohr                $this->start -= $this->pagesize;
1773a97d936SAndreas Gohr                break;
1783a97d936SAndreas Gohr            case 'next':
1793a97d936SAndreas Gohr                $this->start += $this->pagesize;
1803a97d936SAndreas Gohr                break;
1813a97d936SAndreas Gohr            case 'last':
1823a97d936SAndreas Gohr                $this->start = $this->users_total;
1833a97d936SAndreas Gohr                break;
1840440ff15Schris        }
1853a97d936SAndreas Gohr        $this->validatePagination();
186c5a7c0c6SGerrit Uitslag        return true;
1870440ff15Schris    }
1880440ff15Schris
1890440ff15Schris    /**
190c5a7c0c6SGerrit Uitslag     * Output appropriate html
191253d4b48SGerrit Uitslag     *
192253d4b48SGerrit Uitslag     * @return bool
193*a664aabaSAndreas Gohr     * @todo split into smaller functions, use Form class
1940440ff15Schris     */
1953a97d936SAndreas Gohr    public function html()
1963a97d936SAndreas Gohr    {
1970440ff15Schris        global $ID;
1980440ff15Schris
1993a97d936SAndreas Gohr        if (is_null($this->auth)) {
2000440ff15Schris            print $this->lang['badauth'];
2010440ff15Schris            return false;
2020440ff15Schris        }
2030440ff15Schris
2043a97d936SAndreas Gohr        $user_list = $this->auth->retrieveUsers($this->start, $this->pagesize, $this->filter);
2050440ff15Schris
2063a97d936SAndreas Gohr        $page_buttons = $this->pagination();
2073a97d936SAndreas Gohr        $delete_disable = $this->auth->canDo('delUser') ? '' : 'disabled="disabled"';
2080440ff15Schris
2093a97d936SAndreas Gohr        $editable = $this->auth->canDo('UserMod');
2103a97d936SAndreas Gohr        $export_label = empty($this->filter) ? $this->lang['export_all'] : $this->lang['export_filtered'];
2116154103cSmatthiasgrimm
2120440ff15Schris        print $this->locale_xhtml('intro');
2130440ff15Schris        print $this->locale_xhtml('list');
2140440ff15Schris
215*a664aabaSAndreas Gohr        echo '<div id="user__manager">';
216*a664aabaSAndreas Gohr        echo '<div class="level2">';
2170440ff15Schris
2183a97d936SAndreas Gohr        if ($this->users_total > 0) {
219*a664aabaSAndreas Gohr            printf(
220*a664aabaSAndreas Gohr                '<p>' . $this->lang['summary'] . '</p>',
2213a97d936SAndreas Gohr                $this->start + 1,
2223a97d936SAndreas Gohr                $this->last,
2233a97d936SAndreas Gohr                $this->users_total,
2243a97d936SAndreas Gohr                $this->auth->getUserCount()
22564159a61SAndreas Gohr            );
2260440ff15Schris        } else {
2273a97d936SAndreas Gohr            if ($this->users_total < 0) {
228a102b175SGerrit Uitslag                $allUserTotal = 0;
229a102b175SGerrit Uitslag            } else {
2303a97d936SAndreas Gohr                $allUserTotal = $this->auth->getUserCount();
231a102b175SGerrit Uitslag            }
232*a664aabaSAndreas Gohr            printf('<p>%s</p>', sprintf($this->lang['nonefound'], $allUserTotal));
2330440ff15Schris        }
234*a664aabaSAndreas Gohr        printf('<form action="%s" method="post">', wl($ID));
235634d7150SAndreas Gohr        formSecurityToken();
236*a664aabaSAndreas Gohr        echo '<div class="table">';
237*a664aabaSAndreas Gohr        echo '<table class="inline">';
238*a664aabaSAndreas Gohr        echo '<thead>';
239*a664aabaSAndreas Gohr        echo '<tr>';
240*a664aabaSAndreas Gohr        echo '<th>&#160;</th>';
241*a664aabaSAndreas Gohr        echo '<th>' . $this->lang["user_id"] . '</th>';
242*a664aabaSAndreas Gohr        echo '<th>' . $this->lang["user_name"] . '</th>';
243*a664aabaSAndreas Gohr        echo '<th>' . $this->lang["user_mail"] . '</th>';
244*a664aabaSAndreas Gohr        echo '<th>' . $this->lang["user_groups"] . '</th>';
245*a664aabaSAndreas Gohr        echo '</tr>';
2460440ff15Schris
247*a664aabaSAndreas Gohr        echo '<tr>';
248*a664aabaSAndreas Gohr        echo '<td class="rightalign"><input type="image" src="' .
249*a664aabaSAndreas Gohr            self::IMAGE_DIR . 'search.png" name="fn[search][new]" title="' .
250*a664aabaSAndreas Gohr            $this->lang['search_prompt'] . '" alt="' . $this->lang['search'] . '" class="button" /></td>';
251*a664aabaSAndreas Gohr        echo '<td><input type="text" name="userid" class="edit" value="' . $this->htmlFilter('user') . '" /></td>';
252*a664aabaSAndreas Gohr        echo '<td><input type="text" name="username" class="edit" value="' . $this->htmlFilter('name') . '" /></td>';
253*a664aabaSAndreas Gohr        echo '<td><input type="text" name="usermail" class="edit" value="' . $this->htmlFilter('mail') . '" /></td>';
254*a664aabaSAndreas Gohr        echo '<td><input type="text" name="usergroups" class="edit" value="' . $this->htmlFilter('grps') . '" /></td>';
255*a664aabaSAndreas Gohr        echo '</tr>';
256*a664aabaSAndreas Gohr        echo '</thead>';
2570440ff15Schris
2583a97d936SAndreas Gohr        if ($this->users_total) {
259*a664aabaSAndreas Gohr            echo '<tbody>';
2600440ff15Schris            foreach ($user_list as $user => $userinfo) {
2610440ff15Schris                extract($userinfo);
262c5a7c0c6SGerrit Uitslag                /**
263c5a7c0c6SGerrit Uitslag                 * @var string $name
264c5a7c0c6SGerrit Uitslag                 * @var string $pass
265c5a7c0c6SGerrit Uitslag                 * @var string $mail
266c5a7c0c6SGerrit Uitslag                 * @var array $grps
267c5a7c0c6SGerrit Uitslag                 */
26854cc7aa4SAndreas Gohr                $groups = implode(', ', $grps);
269*a664aabaSAndreas Gohr                echo '<tr class="user_info">';
270*a664aabaSAndreas Gohr                echo '<td class="centeralign"><input type="checkbox" name="delete[' . hsc($user) .
271*a664aabaSAndreas Gohr                    ']" ' . $delete_disable . ' /></td>';
2722365d73dSAnika Henke                if ($editable) {
273*a664aabaSAndreas Gohr                    echo '<td><a href="' . wl($ID, ['fn[edit][' . $user . ']' => 1,
27477d19185SAndreas Gohr                            'do' => 'admin',
27577d19185SAndreas Gohr                            'page' => 'usermanager',
27654cc7aa4SAndreas Gohr                            'sectok' => getSecurityToken()]) .
277*a664aabaSAndreas Gohr                        '" title="' . $this->lang['edit_prompt'] . '">' . hsc($user) . '</a></td>';
2782365d73dSAnika Henke                } else {
279*a664aabaSAndreas Gohr                    echo '<td>' . hsc($user) . '</td>';
2802365d73dSAnika Henke                }
281*a664aabaSAndreas Gohr                echo '<td>' . hsc($name) . '</td><td>' . hsc($mail) . '</td><td>' . hsc($groups) . '</td>';
282*a664aabaSAndreas Gohr                echo '</tr>';
2830440ff15Schris            }
284*a664aabaSAndreas Gohr            echo '</tbody>';
2850440ff15Schris        }
2860440ff15Schris
287*a664aabaSAndreas Gohr        echo '<tbody>';
288*a664aabaSAndreas Gohr        echo '<tr><td colspan="5" class="centeralign">';
289*a664aabaSAndreas Gohr        echo '<span class="medialeft">';
290*a664aabaSAndreas Gohr        echo '<button type="submit" name="fn[delete]" id="usrmgr__del" ' . $delete_disable . '>' .
291*a664aabaSAndreas Gohr            $this->lang['delete_selected'] . '</button>';
292*a664aabaSAndreas Gohr        echo '</span>';
293*a664aabaSAndreas Gohr        echo '<span class="mediaright">';
294*a664aabaSAndreas Gohr        echo '<button type="submit" name="fn[start]" ' . $page_buttons['start'] . '>' .
295*a664aabaSAndreas Gohr            $this->lang['start'] . '</button>';
296*a664aabaSAndreas Gohr        echo '<button type="submit" name="fn[prev]" ' . $page_buttons['prev'] . '>' .
297*a664aabaSAndreas Gohr            $this->lang['prev'] . "</button>";
298*a664aabaSAndreas Gohr        echo '<button type="submit" name="fn[next]" ' . $page_buttons['next'] . '>' .
299*a664aabaSAndreas Gohr            $this->lang['next'] . '</button>';
300*a664aabaSAndreas Gohr        echo '<button type="submit" name="fn[last]" ' . $page_buttons['last'] . '>' .
301*a664aabaSAndreas Gohr            $this->lang['last'] . '</button>';
302*a664aabaSAndreas Gohr        echo '</span>';
3033a97d936SAndreas Gohr        if (!empty($this->filter)) {
304*a664aabaSAndreas Gohr            echo '<button type="submit" name="fn[search][clear]">' . $this->lang['clear'] . '</button>';
3055c967d3dSChristopher Smith        }
306*a664aabaSAndreas Gohr        echo '<button type="submit" name="fn[export]">' . $export_label . '</button>';
307*a664aabaSAndreas Gohr        echo '<input type="hidden" name="do"    value="admin" />';
308*a664aabaSAndreas Gohr        echo '<input type="hidden" name="page"  value="usermanager" />';
309daf4ca4eSAnika Henke
3103a97d936SAndreas Gohr        $this->htmlFilterSettings(2);
311daf4ca4eSAnika Henke
312*a664aabaSAndreas Gohr        echo '</td></tr>';
313*a664aabaSAndreas Gohr        echo '</tbody>';
314*a664aabaSAndreas Gohr        echo '</table>';
315*a664aabaSAndreas Gohr        echo '</div>';
3160440ff15Schris
317*a664aabaSAndreas Gohr        echo '</form>';
318*a664aabaSAndreas Gohr        echo '</div>';
3190440ff15Schris
320*a664aabaSAndreas Gohr        $style = $this->edit_user ? ' class="edit_user"' : '';
3210440ff15Schris
3223a97d936SAndreas Gohr        if ($this->auth->canDo('addUser')) {
323*a664aabaSAndreas Gohr            echo '<div' . $style . '>';
3240440ff15Schris            print $this->locale_xhtml('add');
325*a664aabaSAndreas Gohr            echo '<div class="level2">';
3260440ff15Schris
32754cc7aa4SAndreas Gohr            $this->htmlUserForm('add', null, [], 4);
3280440ff15Schris
329*a664aabaSAndreas Gohr            echo '</div>';
330*a664aabaSAndreas Gohr            echo '</div>';
3310440ff15Schris        }
3320440ff15Schris
3333a97d936SAndreas Gohr        if ($this->edit_user && $this->auth->canDo('UserMod')) {
334*a664aabaSAndreas Gohr            echo '<div' . $style . ' id="scroll__here">';
3350440ff15Schris            print $this->locale_xhtml('edit');
336*a664aabaSAndreas Gohr            echo '<div class="level2">';
3370440ff15Schris
3383a97d936SAndreas Gohr            $this->htmlUserForm('modify', $this->edit_user, $this->edit_userdata, 4);
3390440ff15Schris
340*a664aabaSAndreas Gohr            echo '</div>';
341*a664aabaSAndreas Gohr            echo '</div>';
3420440ff15Schris        }
343ae1afd2fSChristopher Smith
3443a97d936SAndreas Gohr        if ($this->auth->canDo('addUser')) {
3453a97d936SAndreas Gohr            $this->htmlImportForm();
346ae1afd2fSChristopher Smith        }
347*a664aabaSAndreas Gohr        echo '</div>';
348c5a7c0c6SGerrit Uitslag        return true;
3490440ff15Schris    }
3500440ff15Schris
35182fd59b6SAndreas Gohr    /**
35264cdf779SAndreas Gohr     * User Manager is only available if the auth backend supports it
35364cdf779SAndreas Gohr     *
35464cdf779SAndreas Gohr     * @inheritdoc
35564cdf779SAndreas Gohr     * @return bool
35664cdf779SAndreas Gohr     */
35764cdf779SAndreas Gohr    public function isAccessibleByCurrentUser()
35864cdf779SAndreas Gohr    {
35951ee2399SGerrit Uitslag        /** @var AuthPlugin $auth */
36064cdf779SAndreas Gohr        global $auth;
36164cdf779SAndreas Gohr        if (!$auth || !$auth->canDo('getUsers')) {
36264cdf779SAndreas Gohr            return false;
36364cdf779SAndreas Gohr        }
36464cdf779SAndreas Gohr
36564cdf779SAndreas Gohr        return parent::isAccessibleByCurrentUser();
36664cdf779SAndreas Gohr    }
36764cdf779SAndreas Gohr
36864cdf779SAndreas Gohr
36964cdf779SAndreas Gohr    /**
370c5a7c0c6SGerrit Uitslag     * Display form to add or modify a user
371c5a7c0c6SGerrit Uitslag     *
372c5a7c0c6SGerrit Uitslag     * @param string $cmd 'add' or 'modify'
373c5a7c0c6SGerrit Uitslag     * @param string $user id of user
374c5a7c0c6SGerrit Uitslag     * @param array $userdata array with name, mail, pass and grps
375c5a7c0c6SGerrit Uitslag     * @param int $indent
376*a664aabaSAndreas Gohr     * @todo use Form class
37782fd59b6SAndreas Gohr     */
37854cc7aa4SAndreas Gohr    protected function htmlUserForm($cmd, $user = '', $userdata = [], $indent = 0)
3793a97d936SAndreas Gohr    {
380a6858c6aSchris        global $conf;
381bb4866bdSchris        global $ID;
382be9008d3SChristopher Smith        global $lang;
38354cc7aa4SAndreas Gohr        $name = '';
38454cc7aa4SAndreas Gohr        $mail = '';
38554cc7aa4SAndreas Gohr        $groups = '';
38654cc7aa4SAndreas Gohr        $notes = [];
3870440ff15Schris
3880440ff15Schris        if ($user) {
38978c7c8c9Schris            extract($userdata);
39054cc7aa4SAndreas Gohr            if (!empty($grps)) $groups = implode(',', $grps);
391a6858c6aSchris        } else {
392a6858c6aSchris            $notes[] = sprintf($this->lang['note_group'], $conf['defaultgroup']);
3930440ff15Schris        }
3940440ff15Schris
395*a664aabaSAndreas Gohr        printf('<form action="%s" method="post">', wl($ID));
396634d7150SAndreas Gohr        formSecurityToken();
397*a664aabaSAndreas Gohr        echo '<div class="table">';
398*a664aabaSAndreas Gohr        echo '<table class="inline">';
399*a664aabaSAndreas Gohr        echo '<thead>';
400*a664aabaSAndreas Gohr        echo '<tr><th>' . $this->lang["field"] . "</th><th>" . $this->lang["value"] . "</th></tr>";
401*a664aabaSAndreas Gohr        echo '</thead>';
402*a664aabaSAndreas Gohr        echo '<tbody>';
40326fb387bSchris
4043a97d936SAndreas Gohr        $this->htmlInputField(
40564159a61SAndreas Gohr            $cmd . "_userid",
40664159a61SAndreas Gohr            "userid",
40764159a61SAndreas Gohr            $this->lang["user_id"],
40864159a61SAndreas Gohr            $user,
4093a97d936SAndreas Gohr            $this->auth->canDo("modLogin"),
41064159a61SAndreas Gohr            true,
41164159a61SAndreas Gohr            $indent + 6
41264159a61SAndreas Gohr        );
4133a97d936SAndreas Gohr        $this->htmlInputField(
41464159a61SAndreas Gohr            $cmd . "_userpass",
41564159a61SAndreas Gohr            "userpass",
41664159a61SAndreas Gohr            $this->lang["user_pass"],
41764159a61SAndreas Gohr            "",
4183a97d936SAndreas Gohr            $this->auth->canDo("modPass"),
41964159a61SAndreas Gohr            false,
42064159a61SAndreas Gohr            $indent + 6
42164159a61SAndreas Gohr        );
4223a97d936SAndreas Gohr        $this->htmlInputField(
42364159a61SAndreas Gohr            $cmd . "_userpass2",
42464159a61SAndreas Gohr            "userpass2",
42564159a61SAndreas Gohr            $lang["passchk"],
42664159a61SAndreas Gohr            "",
4273a97d936SAndreas Gohr            $this->auth->canDo("modPass"),
42864159a61SAndreas Gohr            false,
42964159a61SAndreas Gohr            $indent + 6
43064159a61SAndreas Gohr        );
4313a97d936SAndreas Gohr        $this->htmlInputField(
43264159a61SAndreas Gohr            $cmd . "_username",
43364159a61SAndreas Gohr            "username",
43464159a61SAndreas Gohr            $this->lang["user_name"],
43564159a61SAndreas Gohr            $name,
4363a97d936SAndreas Gohr            $this->auth->canDo("modName"),
43764159a61SAndreas Gohr            true,
43864159a61SAndreas Gohr            $indent + 6
43964159a61SAndreas Gohr        );
4403a97d936SAndreas Gohr        $this->htmlInputField(
44164159a61SAndreas Gohr            $cmd . "_usermail",
44264159a61SAndreas Gohr            "usermail",
44364159a61SAndreas Gohr            $this->lang["user_mail"],
44464159a61SAndreas Gohr            $mail,
4453a97d936SAndreas Gohr            $this->auth->canDo("modMail"),
44664159a61SAndreas Gohr            true,
44764159a61SAndreas Gohr            $indent + 6
44864159a61SAndreas Gohr        );
4493a97d936SAndreas Gohr        $this->htmlInputField(
45064159a61SAndreas Gohr            $cmd . "_usergroups",
45164159a61SAndreas Gohr            "usergroups",
45264159a61SAndreas Gohr            $this->lang["user_groups"],
45364159a61SAndreas Gohr            $groups,
4543a97d936SAndreas Gohr            $this->auth->canDo("modGroups"),
45564159a61SAndreas Gohr            false,
45664159a61SAndreas Gohr            $indent + 6
45764159a61SAndreas Gohr        );
45826fb387bSchris
4593a97d936SAndreas Gohr        if ($this->auth->canDo("modPass")) {
460ee9498f5SChristopher Smith            if ($cmd == 'add') {
461c3f4fb63SGina Haeussge                $notes[] = $this->lang['note_pass'];
462ee9498f5SChristopher Smith            }
463a6858c6aSchris            if ($user) {
464a6858c6aSchris                $notes[] = $this->lang['note_notify'];
465a6858c6aSchris            }
466a6858c6aSchris
467*a664aabaSAndreas Gohr            echo '<tr><td><label for="' . $cmd . "_usernotify\" >" .
468*a664aabaSAndreas Gohr                $this->lang["user_notify"] . ': </label></td>
469*a664aabaSAndreas Gohr                 <td><input type="checkbox" id="' . $cmd . '_usernotify" name="usernotify" value="1" />
470*a664aabaSAndreas Gohr                 </td></tr>';
471a6858c6aSchris        }
472a6858c6aSchris
473*a664aabaSAndreas Gohr        echo '</tbody>';
474*a664aabaSAndreas Gohr        echo '<tbody>';
475*a664aabaSAndreas Gohr        echo '<tr>';
476*a664aabaSAndreas Gohr        echo '<td colspan="2">';
477*a664aabaSAndreas Gohr        echo '<input type="hidden" name="do"    value="admin" />';
478*a664aabaSAndreas Gohr        echo '<input type="hidden" name="page"  value="usermanager" />';
4790440ff15Schris
4800440ff15Schris        // save current $user, we need this to access details if the name is changed
481*a664aabaSAndreas Gohr        if ($user) {
482*a664aabaSAndreas Gohr            echo '<input type="hidden" name="userid_old"  value="' . hsc($user) . "\" />";
483*a664aabaSAndreas Gohr        }
4840440ff15Schris
4853a97d936SAndreas Gohr        $this->htmlFilterSettings($indent + 10);
4860440ff15Schris
487*a664aabaSAndreas Gohr        echo '<button type="submit" name="fn[' . $cmd . ']">' . $this->lang[$cmd] . '</button>';
488*a664aabaSAndreas Gohr        echo '</td>';
489*a664aabaSAndreas Gohr        echo '</tr>';
490*a664aabaSAndreas Gohr        echo '</tbody>';
491*a664aabaSAndreas Gohr        echo '</table>';
49245c19902SChristopher Smith
49345c19902SChristopher Smith        if ($notes) {
494*a664aabaSAndreas Gohr            echo '<ul class="notes">';
49545c19902SChristopher Smith            foreach ($notes as $note) {
496*a664aabaSAndreas Gohr                echo '<li><span class="li">' . $note . '</li>';
49745c19902SChristopher Smith            }
498*a664aabaSAndreas Gohr            echo '</ul>';
49945c19902SChristopher Smith        }
500*a664aabaSAndreas Gohr        echo '</div>';
501*a664aabaSAndreas Gohr        echo '</form>';
5020440ff15Schris    }
5030440ff15Schris
504c5a7c0c6SGerrit Uitslag    /**
505c5a7c0c6SGerrit Uitslag     * Prints a inputfield
506c5a7c0c6SGerrit Uitslag     *
507c5a7c0c6SGerrit Uitslag     * @param string $id
508c5a7c0c6SGerrit Uitslag     * @param string $name
509c5a7c0c6SGerrit Uitslag     * @param string $label
510c5a7c0c6SGerrit Uitslag     * @param string $value
511c5a7c0c6SGerrit Uitslag     * @param bool $cando whether auth backend is capable to do this action
5129b82d43fSAndreas Gohr     * @param bool $required is this field required?
513c5a7c0c6SGerrit Uitslag     * @param int $indent
514*a664aabaSAndreas Gohr     * @todo obsolete when Form class is used
515c5a7c0c6SGerrit Uitslag     */
5163a97d936SAndreas Gohr    protected function htmlInputField($id, $name, $label, $value, $cando, $required, $indent = 0)
5173a97d936SAndreas Gohr    {
5187de12fceSAndreas Gohr        $class = $cando ? '' : ' class="disabled"';
5197de12fceSAndreas Gohr        echo str_pad('', $indent);
5207de12fceSAndreas Gohr
521359e9417SChristopher Smith        if ($name == 'userpass' || $name == 'userpass2') {
522d796a891SAndreas Gohr            $fieldtype = 'password';
523d796a891SAndreas Gohr            $autocomp = 'autocomplete="off"';
5247b3674bdSChristopher Smith        } elseif ($name == 'usermail') {
5257b3674bdSChristopher Smith            $fieldtype = 'email';
5267b3674bdSChristopher Smith            $autocomp = '';
527d796a891SAndreas Gohr        } else {
528d796a891SAndreas Gohr            $fieldtype = 'text';
529d796a891SAndreas Gohr            $autocomp = '';
530d796a891SAndreas Gohr        }
531f23f9594SAndreas Gohr        $value = hsc($value);
532d796a891SAndreas Gohr
5337de12fceSAndreas Gohr        echo "<tr $class>";
5347de12fceSAndreas Gohr        echo "<td><label for=\"$id\" >$label: </label></td>";
535*a664aabaSAndreas Gohr        echo '<td>';
5367de12fceSAndreas Gohr        if ($cando) {
5379b82d43fSAndreas Gohr            $req = '';
5389b82d43fSAndreas Gohr            if ($required) $req = 'required="required"';
53964159a61SAndreas Gohr            echo "<input type=\"$fieldtype\" id=\"$id\" name=\"$name\"
54064159a61SAndreas Gohr                  value=\"$value\" class=\"edit\" $autocomp $req />";
5417de12fceSAndreas Gohr        } else {
5427de12fceSAndreas Gohr            echo "<input type=\"hidden\" name=\"$name\" value=\"$value\" />";
54364159a61SAndreas Gohr            echo "<input type=\"$fieldtype\" id=\"$id\" name=\"$name\"
54464159a61SAndreas Gohr                  value=\"$value\" class=\"edit disabled\" disabled=\"disabled\" />";
5457de12fceSAndreas Gohr        }
546*a664aabaSAndreas Gohr        echo '</td>';
547*a664aabaSAndreas Gohr        echo '</tr>';
54826fb387bSchris    }
54926fb387bSchris
550c5a7c0c6SGerrit Uitslag    /**
551c5a7c0c6SGerrit Uitslag     * Returns htmlescaped filter value
552c5a7c0c6SGerrit Uitslag     *
553c5a7c0c6SGerrit Uitslag     * @param string $key name of search field
554c5a7c0c6SGerrit Uitslag     * @return string html escaped value
555c5a7c0c6SGerrit Uitslag     */
5563a97d936SAndreas Gohr    protected function htmlFilter($key)
5573a97d936SAndreas Gohr    {
5583a97d936SAndreas Gohr        if (empty($this->filter)) return '';
5593a97d936SAndreas Gohr        return (isset($this->filter[$key]) ? hsc($this->filter[$key]) : '');
5600440ff15Schris    }
5610440ff15Schris
562c5a7c0c6SGerrit Uitslag    /**
563c5a7c0c6SGerrit Uitslag     * Print hidden inputs with the current filter values
564c5a7c0c6SGerrit Uitslag     *
565c5a7c0c6SGerrit Uitslag     * @param int $indent
566c5a7c0c6SGerrit Uitslag     */
5673a97d936SAndreas Gohr    protected function htmlFilterSettings($indent = 0)
5683a97d936SAndreas Gohr    {
5690440ff15Schris
570*a664aabaSAndreas Gohr        echo '<input type="hidden" name="start" value="' . $this->start . '" />';
5710440ff15Schris
5723a97d936SAndreas Gohr        foreach ($this->filter as $key => $filter) {
573*a664aabaSAndreas Gohr            echo '<input type="hidden" name="filter[' . $key . ']" value="' . hsc($filter) . '" />';
5740440ff15Schris        }
5750440ff15Schris    }
5760440ff15Schris
577c5a7c0c6SGerrit Uitslag    /**
578c5a7c0c6SGerrit Uitslag     * Print import form and summary of previous import
579c5a7c0c6SGerrit Uitslag     *
580c5a7c0c6SGerrit Uitslag     * @param int $indent
581c5a7c0c6SGerrit Uitslag     */
5823a97d936SAndreas Gohr    protected function htmlImportForm($indent = 0)
5833a97d936SAndreas Gohr    {
584ae1afd2fSChristopher Smith        global $ID;
585ae1afd2fSChristopher Smith
58654cc7aa4SAndreas Gohr        $failure_download_link = wl($ID, ['do' => 'admin', 'page' => 'usermanager', 'fn[importfails]' => 1]);
587ae1afd2fSChristopher Smith
588*a664aabaSAndreas Gohr        echo '<div class="level2 import_users">';
589ae1afd2fSChristopher Smith        print $this->locale_xhtml('import');
590*a664aabaSAndreas Gohr        echo '<form action="' . wl($ID) . '" method="post" enctype="multipart/form-data">';
591ae1afd2fSChristopher Smith        formSecurityToken();
592*a664aabaSAndreas Gohr        echo '<label>' . $this->lang['import_userlistcsv'] . '<input type="file" name="import" /></label>';
593*a664aabaSAndreas Gohr        echo '<button type="submit" name="fn[import]">' . $this->lang['import'] . '</button>';
594*a664aabaSAndreas Gohr        echo '<input type="hidden" name="do"    value="admin" />';
595*a664aabaSAndreas Gohr        echo '<input type="hidden" name="page"  value="usermanager" />';
596ae1afd2fSChristopher Smith
5973a97d936SAndreas Gohr        $this->htmlFilterSettings($indent + 4);
598*a664aabaSAndreas Gohr        echo '</form>';
599*a664aabaSAndreas Gohr        echo '</div>';
600ae1afd2fSChristopher Smith
601ae1afd2fSChristopher Smith        // list failures from the previous import
6023a97d936SAndreas Gohr        if ($this->import_failures) {
6033a97d936SAndreas Gohr            $digits = strlen(count($this->import_failures));
604*a664aabaSAndreas Gohr            echo '<div class="level3 import_failures">';
605*a664aabaSAndreas Gohr            echo '<h3>' . $this->lang['import_header'] . '</h3>';
606*a664aabaSAndreas Gohr            echo '<table class="import_failures">';
607*a664aabaSAndreas Gohr            echo '<thead>';
608*a664aabaSAndreas Gohr            echo '<tr>';
609*a664aabaSAndreas Gohr            echo '<th class="line">' . $this->lang['line'] . '</th>';
610*a664aabaSAndreas Gohr            echo '<th class="error">' . $this->lang['error'] . '</th>';
611*a664aabaSAndreas Gohr            echo '<th class="userid">' . $this->lang['user_id'] . '</th>';
612*a664aabaSAndreas Gohr            echo '<th class="username">' . $this->lang['user_name'] . '</th>';
613*a664aabaSAndreas Gohr            echo '<th class="usermail">' . $this->lang['user_mail'] . '</th>';
614*a664aabaSAndreas Gohr            echo '<th class="usergroups">' . $this->lang['user_groups'] . '</th>';
615*a664aabaSAndreas Gohr            echo '</tr>';
616*a664aabaSAndreas Gohr            echo '</thead>';
617*a664aabaSAndreas Gohr            echo '<tbody>';
6183a97d936SAndreas Gohr            foreach ($this->import_failures as $line => $failure) {
619*a664aabaSAndreas Gohr                echo '<tr>';
620*a664aabaSAndreas Gohr                echo '<td class="lineno"> ' . sprintf('%0' . $digits . 'd', $line) . ' </td>';
621*a664aabaSAndreas Gohr                echo '<td class="error">' . $failure['error'] . ' </td>';
622*a664aabaSAndreas Gohr                echo '<td class="field userid"> ' . hsc($failure['user'][0]) . ' </td>';
623*a664aabaSAndreas Gohr                echo '<td class="field username"> ' . hsc($failure['user'][2]) . ' </td>';
624*a664aabaSAndreas Gohr                echo '<td class="field usermail"> ' . hsc($failure['user'][3]) . ' </td>';
625*a664aabaSAndreas Gohr                echo '<td class="field usergroups"> ' . hsc($failure['user'][4]) . ' </td>';
626*a664aabaSAndreas Gohr                echo '</tr>';
627ae1afd2fSChristopher Smith            }
628*a664aabaSAndreas Gohr            echo '</tbody>';
629*a664aabaSAndreas Gohr            echo '</table>';
630*a664aabaSAndreas Gohr            echo '<p><a href="' . $failure_download_link . '">' . $this->lang['import_downloadfailures'] . '</a></p>';
631*a664aabaSAndreas Gohr            echo '</div>';
632ae1afd2fSChristopher Smith        }
633ae1afd2fSChristopher Smith    }
634ae1afd2fSChristopher Smith
635c5a7c0c6SGerrit Uitslag    /**
636c5a7c0c6SGerrit Uitslag     * Add an user to auth backend
637c5a7c0c6SGerrit Uitslag     *
638c5a7c0c6SGerrit Uitslag     * @return bool whether succesful
639c5a7c0c6SGerrit Uitslag     */
6403a97d936SAndreas Gohr    protected function addUser()
6413a97d936SAndreas Gohr    {
64200d58927SMichael Hamann        global $INPUT;
643634d7150SAndreas Gohr        if (!checkSecurityToken()) return false;
6443a97d936SAndreas Gohr        if (!$this->auth->canDo('addUser')) return false;
6450440ff15Schris
64654cc7aa4SAndreas Gohr        [$user, $pass, $name, $mail, $grps, $passconfirm] = $this->retrieveUser();
6470440ff15Schris        if (empty($user)) return false;
6486733c4d7SChris Smith
6493a97d936SAndreas Gohr        if ($this->auth->canDo('modPass')) {
650c3f4fb63SGina Haeussge            if (empty($pass)) {
65100d58927SMichael Hamann                if ($INPUT->has('usernotify')) {
6528a285f7fSAndreas Gohr                    $pass = auth_pwgen($user);
653c3f4fb63SGina Haeussge                } else {
65460b9901bSAndreas Gohr                    msg($this->lang['add_fail'], -1);
65509a5dcd6SMichael Große                    msg($this->lang['addUser_error_missing_pass'], -1);
65660b9901bSAndreas Gohr                    return false;
65760b9901bSAndreas Gohr                }
65854cc7aa4SAndreas Gohr            } elseif (!$this->verifyPassword($pass, $passconfirm)) {
65909a5dcd6SMichael Große                msg($this->lang['add_fail'], -1);
66009a5dcd6SMichael Große                msg($this->lang['addUser_error_pass_not_identical'], -1);
661359e9417SChristopher Smith                return false;
662359e9417SChristopher Smith            }
66354cc7aa4SAndreas Gohr        } elseif (!empty($pass)) {
6646733c4d7SChris Smith            msg($this->lang['add_fail'], -1);
66509a5dcd6SMichael Große            msg($this->lang['addUser_error_modPass_disabled'], -1);
6666733c4d7SChris Smith            return false;
6676733c4d7SChris Smith        }
6686733c4d7SChris Smith
6693a97d936SAndreas Gohr        if ($this->auth->canDo('modName')) {
6706733c4d7SChris Smith            if (empty($name)) {
6716733c4d7SChris Smith                msg($this->lang['add_fail'], -1);
67209a5dcd6SMichael Große                msg($this->lang['addUser_error_name_missing'], -1);
6736733c4d7SChris Smith                return false;
6746733c4d7SChris Smith            }
67554cc7aa4SAndreas Gohr        } elseif (!empty($name)) {
67609a5dcd6SMichael Große            msg($this->lang['add_fail'], -1);
67709a5dcd6SMichael Große            msg($this->lang['addUser_error_modName_disabled'], -1);
6786733c4d7SChris Smith            return false;
6796733c4d7SChris Smith        }
6806733c4d7SChris Smith
6813a97d936SAndreas Gohr        if ($this->auth->canDo('modMail')) {
6826733c4d7SChris Smith            if (empty($mail)) {
6836733c4d7SChris Smith                msg($this->lang['add_fail'], -1);
68409a5dcd6SMichael Große                msg($this->lang['addUser_error_mail_missing'], -1);
6856733c4d7SChris Smith                return false;
6866733c4d7SChris Smith            }
68754cc7aa4SAndreas Gohr        } elseif (!empty($mail)) {
68809a5dcd6SMichael Große            msg($this->lang['add_fail'], -1);
68909a5dcd6SMichael Große            msg($this->lang['addUser_error_modMail_disabled'], -1);
6906733c4d7SChris Smith            return false;
6916733c4d7SChris Smith        }
6920440ff15Schris
69354cc7aa4SAndreas Gohr        if ($ok = $this->auth->triggerUserMod('create', [$user, $pass, $name, $mail, $grps])) {
694a6858c6aSchris            msg($this->lang['add_ok'], 1);
695a6858c6aSchris
69600d58927SMichael Hamann            if ($INPUT->has('usernotify') && $pass) {
6973a97d936SAndreas Gohr                $this->notifyUser($user, $pass);
698a6858c6aSchris            }
699a6858c6aSchris        } else {
70060b9901bSAndreas Gohr            msg($this->lang['add_fail'], -1);
70109a5dcd6SMichael Große            msg($this->lang['addUser_error_create_event_failed'], -1);
702a6858c6aSchris        }
703a6858c6aSchris
704a6858c6aSchris        return $ok;
7050440ff15Schris    }
7060440ff15Schris
7070440ff15Schris    /**
708c5a7c0c6SGerrit Uitslag     * Delete user from auth backend
709c5a7c0c6SGerrit Uitslag     *
710c5a7c0c6SGerrit Uitslag     * @return bool whether succesful
7110440ff15Schris     */
7123a97d936SAndreas Gohr    protected function deleteUser()
7133a97d936SAndreas Gohr    {
71400d58927SMichael Hamann        global $conf, $INPUT;
7159ec82636SAndreas Gohr
716634d7150SAndreas Gohr        if (!checkSecurityToken()) return false;
7173a97d936SAndreas Gohr        if (!$this->auth->canDo('delUser')) return false;
7180440ff15Schris
71900d58927SMichael Hamann        $selected = $INPUT->arr('delete');
72000d58927SMichael Hamann        if (empty($selected)) return false;
7210440ff15Schris        $selected = array_keys($selected);
7220440ff15Schris
723c9a8f912SMichael Klier        if (in_array($_SERVER['REMOTE_USER'], $selected)) {
724c9a8f912SMichael Klier            msg("You can't delete yourself!", -1);
725c9a8f912SMichael Klier            return false;
726c9a8f912SMichael Klier        }
727c9a8f912SMichael Klier
72854cc7aa4SAndreas Gohr        $count = $this->auth->triggerUserMod('delete', [$selected]);
7290440ff15Schris        if ($count == count($selected)) {
7300440ff15Schris            $text = str_replace('%d', $count, $this->lang['delete_ok']);
7310440ff15Schris            msg("$text.", 1);
7320440ff15Schris        } else {
7330440ff15Schris            $part1 = str_replace('%d', $count, $this->lang['delete_ok']);
7340440ff15Schris            $part2 = str_replace('%d', (count($selected) - $count), $this->lang['delete_fail']);
7350440ff15Schris            msg("$part1, $part2", -1);
7360440ff15Schris        }
73778c7c8c9Schris
7389ec82636SAndreas Gohr        // invalidate all sessions
7399ec82636SAndreas Gohr        io_saveFile($conf['cachedir'] . '/sessionpurge', time());
7409ec82636SAndreas Gohr
74178c7c8c9Schris        return true;
74278c7c8c9Schris    }
74378c7c8c9Schris
74478c7c8c9Schris    /**
74578c7c8c9Schris     * Edit user (a user has been selected for editing)
746c5a7c0c6SGerrit Uitslag     *
747c5a7c0c6SGerrit Uitslag     * @param string $param id of the user
748c5a7c0c6SGerrit Uitslag     * @return bool whether succesful
74978c7c8c9Schris     */
7503a97d936SAndreas Gohr    protected function editUser($param)
7513a97d936SAndreas Gohr    {
752634d7150SAndreas Gohr        if (!checkSecurityToken()) return false;
7533a97d936SAndreas Gohr        if (!$this->auth->canDo('UserMod')) return false;
7543a97d936SAndreas Gohr        $user = $this->auth->cleanUser(preg_replace('/.*[:\/]/', '', $param));
7553a97d936SAndreas Gohr        $userdata = $this->auth->getUserData($user);
75678c7c8c9Schris
75778c7c8c9Schris        // no user found?
75878c7c8c9Schris        if (!$userdata) {
75978c7c8c9Schris            msg($this->lang['edit_usermissing'], -1);
76078c7c8c9Schris            return false;
76178c7c8c9Schris        }
76278c7c8c9Schris
7633a97d936SAndreas Gohr        $this->edit_user = $user;
7643a97d936SAndreas Gohr        $this->edit_userdata = $userdata;
76578c7c8c9Schris
76678c7c8c9Schris        return true;
7670440ff15Schris    }
7680440ff15Schris
7690440ff15Schris    /**
770c5a7c0c6SGerrit Uitslag     * Modify user in the auth backend (modified user data has been recieved)
771c5a7c0c6SGerrit Uitslag     *
772c5a7c0c6SGerrit Uitslag     * @return bool whether succesful
7730440ff15Schris     */
7743a97d936SAndreas Gohr    protected function modifyUser()
7753a97d936SAndreas Gohr    {
77600d58927SMichael Hamann        global $conf, $INPUT;
7779ec82636SAndreas Gohr
778634d7150SAndreas Gohr        if (!checkSecurityToken()) return false;
7793a97d936SAndreas Gohr        if (!$this->auth->canDo('UserMod')) return false;
7800440ff15Schris
78126fb387bSchris        // get currently valid  user data
7823a97d936SAndreas Gohr        $olduser = $this->auth->cleanUser(preg_replace('/.*[:\/]/', '', $INPUT->str('userid_old')));
7833a97d936SAndreas Gohr        $oldinfo = $this->auth->getUserData($olduser);
784073766c6Smatthiasgrimm
78526fb387bSchris        // get new user data subject to change
78654cc7aa4SAndreas Gohr        [$newuser, $newpass, $newname, $newmail, $newgrps, $passconfirm] = $this->retrieveUser();
787073766c6Smatthiasgrimm        if (empty($newuser)) return false;
7880440ff15Schris
78954cc7aa4SAndreas Gohr        $changes = [];
790073766c6Smatthiasgrimm        if ($newuser != $olduser) {
7913a97d936SAndreas Gohr            if (!$this->auth->canDo('modLogin')) {        // sanity check, shouldn't be possible
79226fb387bSchris                msg($this->lang['update_fail'], -1);
79326fb387bSchris                return false;
79426fb387bSchris            }
79526fb387bSchris
79626fb387bSchris            // check if $newuser already exists
7973a97d936SAndreas Gohr            if ($this->auth->getUserData($newuser)) {
798073766c6Smatthiasgrimm                msg(sprintf($this->lang['update_exists'], $newuser), -1);
799a6858c6aSchris                $re_edit = true;
8000440ff15Schris            } else {
801073766c6Smatthiasgrimm                $changes['user'] = $newuser;
8020440ff15Schris            }
80393eefc2fSAndreas Gohr        }
8043a97d936SAndreas Gohr        if ($this->auth->canDo('modPass')) {
8052400ddcbSChristopher Smith            if ($newpass || $passconfirm) {
8063a97d936SAndreas Gohr                if ($this->verifyPassword($newpass, $passconfirm)) {
807359e9417SChristopher Smith                    $changes['pass'] = $newpass;
808359e9417SChristopher Smith                } else {
809359e9417SChristopher Smith                    return false;
810359e9417SChristopher Smith                }
81154cc7aa4SAndreas Gohr            } elseif ($INPUT->has('usernotify')) {
812359e9417SChristopher Smith                // no new password supplied, check if we need to generate one (or it stays unchanged)
813359e9417SChristopher Smith                $changes['pass'] = auth_pwgen($olduser);
814359e9417SChristopher Smith            }
815359e9417SChristopher Smith        }
8160440ff15Schris
8173a97d936SAndreas Gohr        if (!empty($newname) && $this->auth->canDo('modName') && $newname != $oldinfo['name']) {
818073766c6Smatthiasgrimm            $changes['name'] = $newname;
81940d72af6SChristopher Smith        }
8203a97d936SAndreas Gohr        if (!empty($newmail) && $this->auth->canDo('modMail') && $newmail != $oldinfo['mail']) {
821073766c6Smatthiasgrimm            $changes['mail'] = $newmail;
82240d72af6SChristopher Smith        }
8233a97d936SAndreas Gohr        if (!empty($newgrps) && $this->auth->canDo('modGroups') && $newgrps != $oldinfo['grps']) {
824073766c6Smatthiasgrimm            $changes['grps'] = $newgrps;
82540d72af6SChristopher Smith        }
8260440ff15Schris
82754cc7aa4SAndreas Gohr        if ($ok = $this->auth->triggerUserMod('modify', [$olduser, $changes])) {
8280440ff15Schris            msg($this->lang['update_ok'], 1);
829a6858c6aSchris
8306ed3476bSChristopher Smith            if ($INPUT->has('usernotify') && !empty($changes['pass'])) {
831a6858c6aSchris                $notify = empty($changes['user']) ? $olduser : $newuser;
8323a97d936SAndreas Gohr                $this->notifyUser($notify, $changes['pass']);
833a6858c6aSchris            }
834a6858c6aSchris
8359ec82636SAndreas Gohr            // invalidate all sessions
8369ec82636SAndreas Gohr            io_saveFile($conf['cachedir'] . '/sessionpurge', time());
8370440ff15Schris        } else {
8380440ff15Schris            msg($this->lang['update_fail'], -1);
8390440ff15Schris        }
84078c7c8c9Schris
841a6858c6aSchris        if (!empty($re_edit)) {
8423a97d936SAndreas Gohr            $this->editUser($olduser);
8430440ff15Schris        }
8440440ff15Schris
845a6858c6aSchris        return $ok;
846a6858c6aSchris    }
847a6858c6aSchris
848a6858c6aSchris    /**
849c5a7c0c6SGerrit Uitslag     * Send password change notification email
850c5a7c0c6SGerrit Uitslag     *
851c5a7c0c6SGerrit Uitslag     * @param string $user id of user
852c5a7c0c6SGerrit Uitslag     * @param string $password plain text
853c5a7c0c6SGerrit Uitslag     * @param bool $status_alert whether status alert should be shown
854c5a7c0c6SGerrit Uitslag     * @return bool whether succesful
855a6858c6aSchris     */
8563a97d936SAndreas Gohr    protected function notifyUser($user, $password, $status_alert = true)
8573a97d936SAndreas Gohr    {
858a6858c6aSchris
859a6858c6aSchris        if ($sent = auth_sendPassword($user, $password)) {
860328143f8SChristopher Smith            if ($status_alert) {
861a6858c6aSchris                msg($this->lang['notify_ok'], 1);
862328143f8SChristopher Smith            }
86354cc7aa4SAndreas Gohr        } elseif ($status_alert) {
864a6858c6aSchris            msg($this->lang['notify_fail'], -1);
865a6858c6aSchris        }
866a6858c6aSchris
867a6858c6aSchris        return $sent;
868a6858c6aSchris    }
869a6858c6aSchris
870a6858c6aSchris    /**
871359e9417SChristopher Smith     * Verify password meets minimum requirements
872359e9417SChristopher Smith     * :TODO: extend to support password strength
873359e9417SChristopher Smith     *
874359e9417SChristopher Smith     * @param string $password candidate string for new password
875359e9417SChristopher Smith     * @param string $confirm repeated password for confirmation
876359e9417SChristopher Smith     * @return bool   true if meets requirements, false otherwise
877359e9417SChristopher Smith     */
8783a97d936SAndreas Gohr    protected function verifyPassword($password, $confirm)
8793a97d936SAndreas Gohr    {
880be9008d3SChristopher Smith        global $lang;
881359e9417SChristopher Smith
8822400ddcbSChristopher Smith        if (empty($password) && empty($confirm)) {
883359e9417SChristopher Smith            return false;
884359e9417SChristopher Smith        }
885359e9417SChristopher Smith
886359e9417SChristopher Smith        if ($password !== $confirm) {
887be9008d3SChristopher Smith            msg($lang['regbadpass'], -1);
888359e9417SChristopher Smith            return false;
889359e9417SChristopher Smith        }
890359e9417SChristopher Smith
891359e9417SChristopher Smith        // :TODO: test password for required strength
892359e9417SChristopher Smith
893359e9417SChristopher Smith        // if we make it this far the password is good
894359e9417SChristopher Smith        return true;
895359e9417SChristopher Smith    }
896359e9417SChristopher Smith
897359e9417SChristopher Smith    /**
898c5a7c0c6SGerrit Uitslag     * Retrieve & clean user data from the form
899a6858c6aSchris     *
900c5a7c0c6SGerrit Uitslag     * @param bool $clean whether the cleanUser method of the authentication backend is applied
901a6858c6aSchris     * @return array (user, password, full name, email, array(groups))
9020440ff15Schris     */
9033a97d936SAndreas Gohr    protected function retrieveUser($clean = true)
9043a97d936SAndreas Gohr    {
90551ee2399SGerrit Uitslag        /** @var AuthPlugin $auth */
9067441e340SAndreas Gohr        global $auth;
907fbfbbe8aSHakan Sandell        global $INPUT;
9080440ff15Schris
90954cc7aa4SAndreas Gohr        $user = [];
910fbfbbe8aSHakan Sandell        $user[0] = ($clean) ? $auth->cleanUser($INPUT->str('userid')) : $INPUT->str('userid');
911fbfbbe8aSHakan Sandell        $user[1] = $INPUT->str('userpass');
912fbfbbe8aSHakan Sandell        $user[2] = $INPUT->str('username');
913fbfbbe8aSHakan Sandell        $user[3] = $INPUT->str('usermail');
914fbfbbe8aSHakan Sandell        $user[4] = explode(',', $INPUT->str('usergroups'));
915359e9417SChristopher Smith        $user[5] = $INPUT->str('userpass2');                // repeated password for confirmation
9160440ff15Schris
9177441e340SAndreas Gohr        $user[4] = array_map('trim', $user[4]);
91854cc7aa4SAndreas Gohr        if ($clean) $user[4] = array_map([$auth, 'cleanGroup'], $user[4]);
9197441e340SAndreas Gohr        $user[4] = array_filter($user[4]);
9207441e340SAndreas Gohr        $user[4] = array_unique($user[4]);
92154cc7aa4SAndreas Gohr        if ($user[4] === []) $user[4] = null;
9220440ff15Schris
9230440ff15Schris        return $user;
9240440ff15Schris    }
9250440ff15Schris
926c5a7c0c6SGerrit Uitslag    /**
927c5a7c0c6SGerrit Uitslag     * Set the filter with the current search terms or clear the filter
928c5a7c0c6SGerrit Uitslag     *
929c5a7c0c6SGerrit Uitslag     * @param string $op 'new' or 'clear'
930c5a7c0c6SGerrit Uitslag     */
9313a97d936SAndreas Gohr    protected function setFilter($op)
9323a97d936SAndreas Gohr    {
9330440ff15Schris
93454cc7aa4SAndreas Gohr        $this->filter = [];
9350440ff15Schris
9360440ff15Schris        if ($op == 'new') {
937a19c9aa0SGerrit Uitslag            [$user, /* pass */, $name, $mail, $grps] = $this->retrieveUser(false);
9380440ff15Schris
9393a97d936SAndreas Gohr            if (!empty($user)) $this->filter['user'] = $user;
9403a97d936SAndreas Gohr            if (!empty($name)) $this->filter['name'] = $name;
9413a97d936SAndreas Gohr            if (!empty($mail)) $this->filter['mail'] = $mail;
94254cc7aa4SAndreas Gohr            if (!empty($grps)) $this->filter['grps'] = implode('|', $grps);
9430440ff15Schris        }
9440440ff15Schris    }
9450440ff15Schris
946c5a7c0c6SGerrit Uitslag    /**
947c5a7c0c6SGerrit Uitslag     * Get the current search terms
948c5a7c0c6SGerrit Uitslag     *
949c5a7c0c6SGerrit Uitslag     * @return array
950c5a7c0c6SGerrit Uitslag     */
9513a97d936SAndreas Gohr    protected function retrieveFilter()
9523a97d936SAndreas Gohr    {
953fbfbbe8aSHakan Sandell        global $INPUT;
9540440ff15Schris
955fbfbbe8aSHakan Sandell        $t_filter = $INPUT->arr('filter');
9560440ff15Schris
9570440ff15Schris        // messy, but this way we ensure we aren't getting any additional crap from malicious users
95854cc7aa4SAndreas Gohr        $filter = [];
9590440ff15Schris
9600440ff15Schris        if (isset($t_filter['user'])) $filter['user'] = $t_filter['user'];
9610440ff15Schris        if (isset($t_filter['name'])) $filter['name'] = $t_filter['name'];
9620440ff15Schris        if (isset($t_filter['mail'])) $filter['mail'] = $t_filter['mail'];
9630440ff15Schris        if (isset($t_filter['grps'])) $filter['grps'] = $t_filter['grps'];
9640440ff15Schris
9650440ff15Schris        return $filter;
9660440ff15Schris    }
9670440ff15Schris
968c5a7c0c6SGerrit Uitslag    /**
969c5a7c0c6SGerrit Uitslag     * Validate and improve the pagination values
970c5a7c0c6SGerrit Uitslag     */
9713a97d936SAndreas Gohr    protected function validatePagination()
9723a97d936SAndreas Gohr    {
9730440ff15Schris
9743a97d936SAndreas Gohr        if ($this->start >= $this->users_total) {
9753a97d936SAndreas Gohr            $this->start = $this->users_total - $this->pagesize;
9760440ff15Schris        }
9773a97d936SAndreas Gohr        if ($this->start < 0) $this->start = 0;
9780440ff15Schris
9793a97d936SAndreas Gohr        $this->last = min($this->users_total, $this->start + $this->pagesize);
9800440ff15Schris    }
9810440ff15Schris
982c5a7c0c6SGerrit Uitslag    /**
983c5a7c0c6SGerrit Uitslag     * Return an array of strings to enable/disable pagination buttons
984c5a7c0c6SGerrit Uitslag     *
985c5a7c0c6SGerrit Uitslag     * @return array with enable/disable attributes
9860440ff15Schris     */
9873a97d936SAndreas Gohr    protected function pagination()
9883a97d936SAndreas Gohr    {
9890440ff15Schris
99051d94d49Schris        $disabled = 'disabled="disabled"';
99151d94d49Schris
99254cc7aa4SAndreas Gohr        $buttons = [];
9933a97d936SAndreas Gohr        $buttons['start'] = $buttons['prev'] = ($this->start == 0) ? $disabled : '';
99451d94d49Schris
9953a97d936SAndreas Gohr        if ($this->users_total == -1) {
99651d94d49Schris            $buttons['last'] = $disabled;
99751d94d49Schris            $buttons['next'] = '';
99851d94d49Schris        } else {
99964159a61SAndreas Gohr            $buttons['last'] = $buttons['next'] =
10003a97d936SAndreas Gohr                (($this->start + $this->pagesize) >= $this->users_total) ? $disabled : '';
100151d94d49Schris        }
10020440ff15Schris
10033a97d936SAndreas Gohr        if ($this->lastdisabled) {
1004462e9e37SMichael Große            $buttons['last'] = $disabled;
1005462e9e37SMichael Große        }
1006462e9e37SMichael Große
10070440ff15Schris        return $buttons;
10080440ff15Schris    }
10095c967d3dSChristopher Smith
1010c5a7c0c6SGerrit Uitslag    /**
1011c5a7c0c6SGerrit Uitslag     * Export a list of users in csv format using the current filter criteria
10125c967d3dSChristopher Smith     */
10133a97d936SAndreas Gohr    protected function exportCSV()
10143a97d936SAndreas Gohr    {
10155c967d3dSChristopher Smith        // list of users for export - based on current filter criteria
10163a97d936SAndreas Gohr        $user_list = $this->auth->retrieveUsers(0, 0, $this->filter);
101754cc7aa4SAndreas Gohr        $column_headings = [
10185c967d3dSChristopher Smith            $this->lang["user_id"],
10195c967d3dSChristopher Smith            $this->lang["user_name"],
10205c967d3dSChristopher Smith            $this->lang["user_mail"],
10215c967d3dSChristopher Smith            $this->lang["user_groups"]
102254cc7aa4SAndreas Gohr        ];
10235c967d3dSChristopher Smith
10245c967d3dSChristopher Smith        // ==============================================================================================
10255c967d3dSChristopher Smith        // GENERATE OUTPUT
10265c967d3dSChristopher Smith        // normal headers for downloading...
10275c967d3dSChristopher Smith        header('Content-type: text/csv;charset=utf-8');
10285c967d3dSChristopher Smith        header('Content-Disposition: attachment; filename="wikiusers.csv"');
10295c967d3dSChristopher Smith#       // for debugging assistance, send as text plain to the browser
10305c967d3dSChristopher Smith#       header('Content-type: text/plain;charset=utf-8');
10315c967d3dSChristopher Smith
10325c967d3dSChristopher Smith        // output the csv
10335c967d3dSChristopher Smith        $fd = fopen('php://output', 'w');
10345c967d3dSChristopher Smith        fputcsv($fd, $column_headings);
10355c967d3dSChristopher Smith        foreach ($user_list as $user => $info) {
103654cc7aa4SAndreas Gohr            $line = [$user, $info['name'], $info['mail'], implode(',', $info['grps'])];
10375c967d3dSChristopher Smith            fputcsv($fd, $line);
10385c967d3dSChristopher Smith        }
10395c967d3dSChristopher Smith        fclose($fd);
10403a97d936SAndreas Gohr        if (defined('DOKU_UNITTEST')) {
10413a97d936SAndreas Gohr            return;
10423a97d936SAndreas Gohr        }
1043b2c01466SChristopher Smith
10445c967d3dSChristopher Smith        die;
10455c967d3dSChristopher Smith    }
1046ae1afd2fSChristopher Smith
1047c5a7c0c6SGerrit Uitslag    /**
1048c5a7c0c6SGerrit Uitslag     * Import a file of users in csv format
1049ae1afd2fSChristopher Smith     *
1050ae1afd2fSChristopher Smith     * csv file should have 4 columns, user_id, full name, email, groups (comma separated)
1051c5a7c0c6SGerrit Uitslag     *
10525ba64050SChristopher Smith     * @return bool whether successful
1053ae1afd2fSChristopher Smith     */
10543a97d936SAndreas Gohr    protected function importCSV()
10553a97d936SAndreas Gohr    {
1056ae1afd2fSChristopher Smith        // check we are allowed to add users
1057ae1afd2fSChristopher Smith        if (!checkSecurityToken()) return false;
10583a97d936SAndreas Gohr        if (!$this->auth->canDo('addUser')) return false;
1059ae1afd2fSChristopher Smith
1060ae1afd2fSChristopher Smith        // check file uploaded ok.
10617d34963bSAndreas Gohr        if (
10627d34963bSAndreas Gohr            empty($_FILES['import']['size']) ||
10633a97d936SAndreas Gohr            !empty($_FILES['import']['error']) && $this->isUploadedFile($_FILES['import']['tmp_name'])
106464159a61SAndreas Gohr        ) {
1065ae1afd2fSChristopher Smith            msg($this->lang['import_error_upload'], -1);
1066ae1afd2fSChristopher Smith            return false;
1067ae1afd2fSChristopher Smith        }
1068ae1afd2fSChristopher Smith        // retrieve users from the file
106954cc7aa4SAndreas Gohr        $this->import_failures = [];
1070ae1afd2fSChristopher Smith        $import_success_count = 0;
1071ae1afd2fSChristopher Smith        $import_fail_count = 0;
1072ae1afd2fSChristopher Smith        $line = 0;
1073ae1afd2fSChristopher Smith        $fd = fopen($_FILES['import']['tmp_name'], 'r');
1074ae1afd2fSChristopher Smith        if ($fd) {
1075ae1afd2fSChristopher Smith            while ($csv = fgets($fd)) {
107654cc7aa4SAndreas Gohr                if (!Clean::isUtf8($csv)) {
1077efcec72bSChristopher Smith                    $csv = utf8_encode($csv);
1078efcec72bSChristopher Smith                }
1079d0c0a5c4SAnika Henke                $raw = str_getcsv($csv);
1080ae1afd2fSChristopher Smith                $error = '';                        // clean out any errors from the previous line
1081ae1afd2fSChristopher Smith                // data checks...
1082ae1afd2fSChristopher Smith                if (1 == ++$line) {
1083ae1afd2fSChristopher Smith                    if ($raw[0] == 'user_id' || $raw[0] == $this->lang['user_id']) continue;    // skip headers
1084ae1afd2fSChristopher Smith                }
1085ae1afd2fSChristopher Smith                if (count($raw) < 4) {                                        // need at least four fields
1086ae1afd2fSChristopher Smith                    $import_fail_count++;
1087ae1afd2fSChristopher Smith                    $error = sprintf($this->lang['import_error_fields'], count($raw));
108854cc7aa4SAndreas Gohr                    $this->import_failures[$line] = ['error' => $error, 'user' => $raw, 'orig' => $csv];
1089ae1afd2fSChristopher Smith                    continue;
1090ae1afd2fSChristopher Smith                }
1091ae1afd2fSChristopher Smith                array_splice($raw, 1, 0, auth_pwgen());                          // splice in a generated password
10923a97d936SAndreas Gohr                $clean = $this->cleanImportUser($raw, $error);
10933a97d936SAndreas Gohr                if ($clean && $this->importUser($clean, $error)) {
10943a97d936SAndreas Gohr                    $sent = $this->notifyUser($clean[0], $clean[1], false);
1095328143f8SChristopher Smith                    if (!$sent) {
1096328143f8SChristopher Smith                        msg(sprintf($this->lang['import_notify_fail'], $clean[0], $clean[3]), -1);
1097328143f8SChristopher Smith                    }
1098ae1afd2fSChristopher Smith                    $import_success_count++;
1099ae1afd2fSChristopher Smith                } else {
1100ae1afd2fSChristopher Smith                    $import_fail_count++;
1101e73725baSChristopher Smith                    array_splice($raw, 1, 1);                                  // remove the spliced in password
110254cc7aa4SAndreas Gohr                    $this->import_failures[$line] = ['error' => $error, 'user' => $raw, 'orig' => $csv];
1103ae1afd2fSChristopher Smith                }
1104ae1afd2fSChristopher Smith            }
110564159a61SAndreas Gohr            msg(
110664159a61SAndreas Gohr                sprintf(
110764159a61SAndreas Gohr                    $this->lang['import_success_count'],
110864159a61SAndreas Gohr                    ($import_success_count + $import_fail_count),
110964159a61SAndreas Gohr                    $import_success_count
111064159a61SAndreas Gohr                ),
111164159a61SAndreas Gohr                ($import_success_count ? 1 : -1)
111264159a61SAndreas Gohr            );
1113ae1afd2fSChristopher Smith            if ($import_fail_count) {
1114ae1afd2fSChristopher Smith                msg(sprintf($this->lang['import_failure_count'], $import_fail_count), -1);
1115ae1afd2fSChristopher Smith            }
1116ae1afd2fSChristopher Smith        } else {
1117ae1afd2fSChristopher Smith            msg($this->lang['import_error_readfail'], -1);
1118ae1afd2fSChristopher Smith        }
1119ae1afd2fSChristopher Smith
1120ae1afd2fSChristopher Smith        // save import failures into the session
1121ae1afd2fSChristopher Smith        if (!headers_sent()) {
1122ae1afd2fSChristopher Smith            session_start();
11233a97d936SAndreas Gohr            $_SESSION['import_failures'] = $this->import_failures;
1124ae1afd2fSChristopher Smith            session_write_close();
1125ae1afd2fSChristopher Smith        }
1126c5a7c0c6SGerrit Uitslag        return true;
1127ae1afd2fSChristopher Smith    }
1128ae1afd2fSChristopher Smith
1129c5a7c0c6SGerrit Uitslag    /**
1130786dfb0eSGerrit Uitslag     * Returns cleaned user data
1131c5a7c0c6SGerrit Uitslag     *
1132c5a7c0c6SGerrit Uitslag     * @param array $candidate raw values of line from input file
1133253d4b48SGerrit Uitslag     * @param string $error
1134253d4b48SGerrit Uitslag     * @return array|false cleaned data or false
1135c5a7c0c6SGerrit Uitslag     */
11363a97d936SAndreas Gohr    protected function cleanImportUser($candidate, &$error)
11373a97d936SAndreas Gohr    {
1138ae1afd2fSChristopher Smith        global $INPUT;
1139ae1afd2fSChristopher Smith
11403a97d936SAndreas Gohr        // FIXME kludgy ....
1141ae1afd2fSChristopher Smith        $INPUT->set('userid', $candidate[0]);
1142ae1afd2fSChristopher Smith        $INPUT->set('userpass', $candidate[1]);
1143ae1afd2fSChristopher Smith        $INPUT->set('username', $candidate[2]);
1144ae1afd2fSChristopher Smith        $INPUT->set('usermail', $candidate[3]);
1145ae1afd2fSChristopher Smith        $INPUT->set('usergroups', $candidate[4]);
1146ae1afd2fSChristopher Smith
11473a97d936SAndreas Gohr        $cleaned = $this->retrieveUser();
114854cc7aa4SAndreas Gohr        [$user, /* pass */, $name, $mail, /* grps */] = $cleaned;
1149ae1afd2fSChristopher Smith        if (empty($user)) {
1150ae1afd2fSChristopher Smith            $error = $this->lang['import_error_baduserid'];
1151ae1afd2fSChristopher Smith            return false;
1152ae1afd2fSChristopher Smith        }
1153ae1afd2fSChristopher Smith
1154ae1afd2fSChristopher Smith        // no need to check password, handled elsewhere
1155ae1afd2fSChristopher Smith
11563a97d936SAndreas Gohr        if (!($this->auth->canDo('modName') xor empty($name))) {
1157ae1afd2fSChristopher Smith            $error = $this->lang['import_error_badname'];
1158ae1afd2fSChristopher Smith            return false;
1159ae1afd2fSChristopher Smith        }
1160ae1afd2fSChristopher Smith
11613a97d936SAndreas Gohr        if ($this->auth->canDo('modMail')) {
1162328143f8SChristopher Smith            if (empty($mail) || !mail_isvalid($mail)) {
1163ae1afd2fSChristopher Smith                $error = $this->lang['import_error_badmail'];
1164ae1afd2fSChristopher Smith                return false;
1165ae1afd2fSChristopher Smith            }
116654cc7aa4SAndreas Gohr        } elseif (!empty($mail)) {
1167328143f8SChristopher Smith            $error = $this->lang['import_error_badmail'];
1168328143f8SChristopher Smith            return false;
1169328143f8SChristopher Smith        }
1170ae1afd2fSChristopher Smith
1171ae1afd2fSChristopher Smith        return $cleaned;
1172ae1afd2fSChristopher Smith    }
1173ae1afd2fSChristopher Smith
1174c5a7c0c6SGerrit Uitslag    /**
1175c5a7c0c6SGerrit Uitslag     * Adds imported user to auth backend
1176c5a7c0c6SGerrit Uitslag     *
1177c5a7c0c6SGerrit Uitslag     * Required a check of canDo('addUser') before
1178c5a7c0c6SGerrit Uitslag     *
1179c5a7c0c6SGerrit Uitslag     * @param array $user data of user
1180c5a7c0c6SGerrit Uitslag     * @param string &$error reference catched error message
11815ba64050SChristopher Smith     * @return bool whether successful
1182c5a7c0c6SGerrit Uitslag     */
11833a97d936SAndreas Gohr    protected function importUser($user, &$error)
11843a97d936SAndreas Gohr    {
11853a97d936SAndreas Gohr        if (!$this->auth->triggerUserMod('create', $user)) {
1186ae1afd2fSChristopher Smith            $error = $this->lang['import_error_create'];
1187ae1afd2fSChristopher Smith            return false;
1188ae1afd2fSChristopher Smith        }
1189ae1afd2fSChristopher Smith
1190ae1afd2fSChristopher Smith        return true;
1191ae1afd2fSChristopher Smith    }
1192ae1afd2fSChristopher Smith
1193c5a7c0c6SGerrit Uitslag    /**
1194c5a7c0c6SGerrit Uitslag     * Downloads failures as csv file
1195c5a7c0c6SGerrit Uitslag     */
11963a97d936SAndreas Gohr    protected function downloadImportFailures()
11973a97d936SAndreas Gohr    {
1198ae1afd2fSChristopher Smith
1199ae1afd2fSChristopher Smith        // ==============================================================================================
1200ae1afd2fSChristopher Smith        // GENERATE OUTPUT
1201ae1afd2fSChristopher Smith        // normal headers for downloading...
1202ae1afd2fSChristopher Smith        header('Content-type: text/csv;charset=utf-8');
1203ae1afd2fSChristopher Smith        header('Content-Disposition: attachment; filename="importfails.csv"');
1204ae1afd2fSChristopher Smith#       // for debugging assistance, send as text plain to the browser
1205ae1afd2fSChristopher Smith#       header('Content-type: text/plain;charset=utf-8');
1206ae1afd2fSChristopher Smith
1207ae1afd2fSChristopher Smith        // output the csv
1208ae1afd2fSChristopher Smith        $fd = fopen('php://output', 'w');
12093a97d936SAndreas Gohr        foreach ($this->import_failures as $fail) {
121054cc7aa4SAndreas Gohr            fwrite($fd, $fail['orig']);
1211ae1afd2fSChristopher Smith        }
1212ae1afd2fSChristopher Smith        fclose($fd);
1213ae1afd2fSChristopher Smith        die;
1214ae1afd2fSChristopher Smith    }
1215ae1afd2fSChristopher Smith
1216b2c01466SChristopher Smith    /**
1217b2c01466SChristopher Smith     * wrapper for is_uploaded_file to facilitate overriding by test suite
1218253d4b48SGerrit Uitslag     *
1219253d4b48SGerrit Uitslag     * @param string $file filename
1220253d4b48SGerrit Uitslag     * @return bool
1221b2c01466SChristopher Smith     */
12223a97d936SAndreas Gohr    protected function isUploadedFile($file)
12233a97d936SAndreas Gohr    {
1224b2c01466SChristopher Smith        return is_uploaded_file($file);
1225b2c01466SChristopher Smith    }
12260440ff15Schris}
1227