コード例 #1
0
ファイル: MainExtApp.php プロジェクト: yati-raz/oriens
    $title = 'Missing required authentication parameters.';
    // summary of problem
    $detail = 'No password parameter.';
    // explanation of problem
    $errorMessages[] = array('id' => $id++, 'status' => $status, 'code' => $code, 'title' => $title, 'detail' => $detail);
}
if (!$showStopperError) {
    $userId = $db->authenticate_user($_POST['schoolemail'], md5($_POST['password']));
    //echo $outcome.' is userId.<br>';
    if ($userId) {
        $isAuthenticated = true;
        //echo $_POST['email'].' is authenticated.<br>';
        if ($_POST['operation'] == 'authenticate_user') {
            // 2: logged in
            $activityType = 2;
            $itemId = $db->create_activity($userId, $activityType, $userId);
            $profile = array('id' => $userId, 'schoolemail' => $_POST['schoolemail'], 'password' => $_POST['password']);
            $data = array('profile' => $profile);
            print json_encode($data);
        }
    } else {
        //echo $_POST['email'].' is not authenticated.<br>';
        $code = 41;
        // Invalid parameter
        $title = 'Invalid parameter.';
        // summary of problem
        $detail = 'Invalid username or password.';
        // explanation of problem
        $errorMessages[] = array('id' => $id++, 'status' => $status, 'code' => $code, 'title' => $title, 'detail' => $detail);
        $errorResponse = array();
        $errorResponse['errorResponse'] = array('errors' => $errorMessages);