org.digitalcampus.oppia.application.Tracker.java Source code

Java tutorial

Introduction

Here is the source code for org.digitalcampus.oppia.application.Tracker.java

Source

/* 
 * This file is part of OppiaMobile - https://digital-campus.org/
 * 
 * OppiaMobile 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 3 of the License, or
 * (at your option) any later version.
 * 
 * OppiaMobile 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 OppiaMobile. If not, see <http://www.gnu.org/licenses/>.
 */

package org.digitalcampus.oppia.application;

import java.util.UUID;

import org.json.JSONException;
import org.json.JSONObject;

import android.content.Context;

public class Tracker {

    public static final String TAG = Tracker.class.getSimpleName();
    private final Context ctx;

    public Tracker(Context context) {
        this.ctx = context;
    }

    public void saveTracker(int courseId, String digest, JSONObject data, boolean completed) {
        // add tracker UUID
        UUID guid = java.util.UUID.randomUUID();
        try {
            data.put("uuid", guid.toString());
        } catch (JSONException e) {
            e.printStackTrace();
        }
        DbHelper db = new DbHelper(this.ctx);
        db.insertTracker(courseId, digest, data.toString(), completed);
        DatabaseManager.getInstance().closeDatabase();

    }

}