/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

import org.apache.ofbiz.base.util.UtilProperties
import org.apache.ofbiz.base.util.UtilHttp
import org.apache.ofbiz.base.util.UtilMisc
import org.apache.ofbiz.product.store.ProductStoreWorker

productStore = ProductStoreWorker.getProductStore(request)
context.productStoreId = productStore.productStoreId
context.productStore = productStore

context.createAllowPassword = "Y".equals(productStore.allowPassword)
context.getUsername = !"Y".equals(productStore.usePrimaryEmailUsername)

previousParams = parameters._PREVIOUS_PARAMS_
if (previousParams) {
    previousParams = "?" + previousParams
} else {
    previousParams = ""
}
context.previousParams = previousParams

//the parameters from janrain
userInfoMap = request.getAttribute("userInfoMap")
if (!userInfoMap) {
    userInfoMap = request.getSession().getAttribute("userInfoMap")
}
if (userInfoMap) {
    if (userInfoMap.givenName && userInfoMap.familyName) {
        requestParameters.USER_FIRST_NAME = userInfoMap.givenName
        requestParameters.USER_LAST_NAME = userInfoMap.familyName
    } else if (userInfoMap.formatted) {
        requestParameters.USER_FIRST_NAME = userInfoMap.formatted
    }
    requestParameters.CUSTOMER_EMAIL = userInfoMap.email
    requestParameters.preferredUsername = userInfoMap.preferredUsername
    requestParameters.USERNAME = userInfoMap.preferredUsername
    request.getSession().setAttribute("userInfoMap", userInfoMap)
}

donePage = "main;" + UtilHttp.getSessionId(request)
context.donePage = donePage
